From 05826b182f49599f488539c2ae7faaceed4955b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Kwa=C5=9Bniewski?= Date: Thu, 9 Jan 2025 17:44:34 +0700 Subject: [PATCH] [TAPS-436] Move notifications to new channel (#374) --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d94abc2..77d3ebb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -101,8 +101,8 @@ jobs: if: ${{ failure() }} uses: slackapi/slack-github-action@v1.27.0 with: - channel-id: '-frontend-exp-team-notifications' - slack-message: ":x: Current master version of davinci-github-actions is <${{ env.GITHUB_WORKFLOW_URL }}|broken>." + channel-id: 'frontend-notifications' + slack-message: ':x: Current master version of davinci-github-actions is <${{ env.GITHUB_WORKFLOW_URL }}|broken>.' env: SLACK_BOT_TOKEN: ${{ env.SLACK_BOT_TOKEN }} @@ -110,8 +110,8 @@ jobs: if: ${{ success() && steps.changesets.outputs.published == 'true' }} uses: slackapi/slack-github-action@v1.27.0 with: - channel-id: '-frontend-exp-team-notifications' - slack-message: "Current master version of davinci-github-actions successfully released :green_heart:" + channel-id: 'frontend-notifications' + slack-message: 'Current master version of davinci-github-actions successfully released :green_heart:' env: SLACK_BOT_TOKEN: ${{ env.SLACK_BOT_TOKEN }} @@ -119,8 +119,8 @@ jobs: if: ${{ success() && steps.changesets.outputs.published != 'true'}} uses: slackapi/slack-github-action@v1.27.0 with: - channel-id: '-frontend-exp-team-notifications' - slack-message: "A new PR was merged to davinci-github-actions :parrotspin:" + channel-id: 'frontend-notifications' + slack-message: 'A new PR was merged to davinci-github-actions :parrotspin:' env: SLACK_BOT_TOKEN: ${{ env.SLACK_BOT_TOKEN }}