From f5587cae21bf604eef64f9ee8ecded49596530b0 Mon Sep 17 00:00:00 2001 From: Enno Boland Date: Mon, 27 Jan 2020 22:16:01 +0100 Subject: [PATCH] .github/workflows: make IRC notify steps non-fatal --- .github/workflows/notify-issue.yaml | 1 + .github/workflows/notify-pr.yaml | 1 + .github/workflows/notify-push.yaml | 1 + 3 files changed, 3 insertions(+) diff --git a/.github/workflows/notify-issue.yaml b/.github/workflows/notify-issue.yaml index d218f59b158..5627724ca1c 100644 --- a/.github/workflows/notify-issue.yaml +++ b/.github/workflows/notify-issue.yaml @@ -16,6 +16,7 @@ jobs: url: "${{ github.event.issue.html_url }}" - name: "Issue Notification" uses: Gottox/irc-message-action@master + continue-on-error: true if: github.repository == 'void-linux/void-packages' with: notice: true diff --git a/.github/workflows/notify-pr.yaml b/.github/workflows/notify-pr.yaml index edc1386afc5..fac7f615f02 100644 --- a/.github/workflows/notify-pr.yaml +++ b/.github/workflows/notify-pr.yaml @@ -16,6 +16,7 @@ jobs: url: "${{ github.event.pull_request.html_url }}" - name: "Pull Request Notification" uses: Gottox/irc-message-action@master + continue-on-error: true if: github.repository == 'void-linux/void-packages' with: notice: true diff --git a/.github/workflows/notify-push.yaml b/.github/workflows/notify-push.yaml index a28520e017f..b8a73d36884 100644 --- a/.github/workflows/notify-push.yaml +++ b/.github/workflows/notify-push.yaml @@ -16,6 +16,7 @@ jobs: url: "${{ github.event.compare }}" - name: "Push Notification" uses: Gottox/irc-message-action@master + continue-on-error: true if: github.repository == 'void-linux/void-packages' with: notice: true