From 24c0735490f52bc86ac172fcfa6e6419f06001c1 Mon Sep 17 00:00:00 2001 From: Arthur Meyre Date: Tue, 7 Sep 2021 17:01:47 +0200 Subject: [PATCH] fix(build): do not mark job as failing if slack notification fails --- .github/workflows/continuous-integration.yaml | 2 ++ .github/workflows/docker-env.yaml | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index d53aa11a8..a9ffc5ada 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -102,6 +102,7 @@ jobs: recreate: true - name: Slack Notification if: ${{ always() }} + continue-on-error: true uses: rtCamp/action-slack-notify@v2 env: SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} @@ -149,6 +150,7 @@ jobs: - name: Slack Notification if: ${{ always() }} + continue-on-error: true uses: rtCamp/action-slack-notify@v2 env: SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }} diff --git a/.github/workflows/docker-env.yaml b/.github/workflows/docker-env.yaml index a5a35c393..ad82d803f 100644 --- a/.github/workflows/docker-env.yaml +++ b/.github/workflows/docker-env.yaml @@ -51,6 +51,7 @@ jobs: - name: Slack Notification if: ${{ always() }} + continue-on-error: true uses: rtCamp/action-slack-notify@v2 env: SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}