From d1cb236df5c80762de2b2c86e6d51797286c20e1 Mon Sep 17 00:00:00 2001 From: Steve Riesenberg Date: Tue, 7 Jun 2022 16:03:31 -0500 Subject: [PATCH] Fix slack notifications in #spring-security-ci This change can be reverted if upgrading to a new version of Gamesight/slack-workflow-status with the fix available (> 1.1.0). Closes gh-11346 --- .github/workflows/continuous-integration-workflow.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index 409d5d5705..54126a20e0 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -321,7 +321,9 @@ jobs: runs-on: ubuntu-latest steps: - name: Send Slack message - uses: Gamesight/slack-workflow-status@v1.0.1 + # Workaround while waiting for Gamesight/slack-workflow-status#38 to be fixed + # See https://github.com/Gamesight/slack-workflow-status/issues/38 + uses: sjohnr/slack-workflow-status@9eb3eb361c03f8bb9271782f987f472adfc31056 with: repo_token: ${{ secrets.GITHUB_TOKEN }} slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}