From 1a26e088cb01a9a4a79e2926584555c04acca90b Mon Sep 17 00:00:00 2001 From: Vit Horacek Date: Fri, 6 Feb 2026 15:33:19 -0800 Subject: [PATCH] Fix Slack notification env var name in syncVersions The 8398a7/action-slack action expects SLACK_WEBHOOK_URL, not SLACK_WEBHOOK, as the environment variable name. Co-authored-by: Cursor --- .github/workflows/syncVersions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/syncVersions.yml b/.github/workflows/syncVersions.yml index 06a7703868dc9..392edf9c5bf75 100644 --- a/.github/workflows/syncVersions.yml +++ b/.github/workflows/syncVersions.yml @@ -151,7 +151,7 @@ jobs: } env: GITHUB_TOKEN: ${{ github.token }} - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK }} - name: Announce failed workflow in Slack if: ${{ failure() }}