From 1acd339209f4545d4ee3128e4d87a37867a55c4b Mon Sep 17 00:00:00 2001 From: Andreas Ronneseth Date: Sat, 3 Jan 2026 13:22:08 -0700 Subject: [PATCH 1/2] fix(deploy): move deployment messages to #release channel Move all deployment Slack notifications from #rnd-team-channel (old #developers) to #release channel. This affects all repositories using the shared slack-deploy-notification workflow. DEVEX-693 --- .github/workflows/slack-deploy-notification.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/slack-deploy-notification.yaml b/.github/workflows/slack-deploy-notification.yaml index c8d4db1..a19e412 100644 --- a/.github/workflows/slack-deploy-notification.yaml +++ b/.github/workflows/slack-deploy-notification.yaml @@ -36,6 +36,7 @@ jobs: with: payload: | { + "channel": "#release", "text": "${{ github.event.repository.name }} deployed", "blocks": [ { From 371ddcc7964979f9eb4dcf8bb46ad8ca8c470e5f Mon Sep 17 00:00:00 2001 From: Andreas Ronneseth Date: Sat, 3 Jan 2026 13:24:27 -0700 Subject: [PATCH 2/2] fix(deploy): remove invalid dashboard_url from Slack notification Remove the dashboard_url link from deployment Slack notifications as it is invalid. DEVEX-693 --- .github/workflows/slack-deploy-notification.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/slack-deploy-notification.yaml b/.github/workflows/slack-deploy-notification.yaml index a19e412..b86f269 100644 --- a/.github/workflows/slack-deploy-notification.yaml +++ b/.github/workflows/slack-deploy-notification.yaml @@ -43,7 +43,7 @@ jobs: "type": "section", "text": { "type": "mrkdwn", - "text": "*${{ github.event.repository.name }} deployed by ${{ github.triggering_actor }}*\n\tView the <${{ inputs.dashboard_url }}|Deployment>\n\tView the <${{ inputs.apm_url }}|Service APM>" + "text": "*${{ github.event.repository.name }} deployed by ${{ github.triggering_actor }}*\n\tView the <${{ inputs.apm_url }}|Service APM>" }, "accessory": { "type": "button",