From f32a3683b6253260f0f591bc8bf76097981c9763 Mon Sep 17 00:00:00 2001 From: Josh Brown Date: Tue, 15 Oct 2024 15:52:35 -0400 Subject: [PATCH] Make Slack notification a little louder for failied builds --- .github/workflows/notify-slack-on-failure.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-slack-on-failure.yml b/.github/workflows/notify-slack-on-failure.yml index 80238780f..fb30c1d86 100644 --- a/.github/workflows/notify-slack-on-failure.yml +++ b/.github/workflows/notify-slack-on-failure.yml @@ -15,7 +15,7 @@ jobs: uses: slackapi/slack-github-action@v1.23.0 with: channel-id: ${{ secrets.SLACK_CHANNEL_ID }} - slack-message: "GitHub Action *${{ github.event.workflow_run.name }}* has failed in the *${{ github.repository }}* repository.\n<${{ github.event.workflow_run.html_url }}|View the workflow run>" + slack-message: "💥 GitHub Action *${{ github.event.workflow_run.name }}* has failed in the *${{ github.repository }}* repository. 💥\n<${{ github.event.workflow_run.html_url }}|View the workflow run>" env: SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}