From 1ab7483b61afbb18f1821affefdb784941ce108d Mon Sep 17 00:00:00 2001 From: Jordan Ritter Date: Wed, 3 Jun 2026 09:59:51 -0700 Subject: [PATCH] Use org-level SLACK_WEBHOOK_OSS_ALERTS secret in workflows Swap every workflow reference from the repo-local secrets.SLACK_WEBHOOK to the CopilotKit org-level secrets.SLACK_WEBHOOK_OSS_ALERTS. Pure secret-name change: the org secret points at the same #oss-alerts channel, so there is no behavior or channel change. The local SLACK_WEBHOOK env-var aliases inside each step are unchanged. --- .github/workflows/deploy-health-check.yml | 2 +- .github/workflows/deploy-pages.yml | 2 +- .github/workflows/index-health-monitor.yml | 2 +- .github/workflows/notify-pr.yml | 2 +- .github/workflows/publish-docker.yml | 4 ++-- .github/workflows/publish-release.yml | 4 ++-- .github/workflows/unreleased-check.yml | 2 +- .github/workflows/update-competitive-matrix.yml | 4 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/deploy-health-check.yml b/.github/workflows/deploy-health-check.yml index f2a7113..6a7b592 100644 --- a/.github/workflows/deploy-health-check.yml +++ b/.github/workflows/deploy-health-check.yml @@ -31,6 +31,6 @@ jobs: -d "$payload" || true fi env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} GH_REPOSITORY: ${{ github.repository }} GH_RUN_ID: ${{ github.run_id }} diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index ef32c75..d8695a0 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -33,7 +33,7 @@ jobs: - name: Notify Slack on failure if: failure() env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} GH_REPOSITORY: ${{ github.repository }} GH_RUN_ID: ${{ github.run_id }} run: | diff --git a/.github/workflows/index-health-monitor.yml b/.github/workflows/index-health-monitor.yml index f06ba84..2cb6f52 100644 --- a/.github/workflows/index-health-monitor.yml +++ b/.github/workflows/index-health-monitor.yml @@ -448,7 +448,7 @@ jobs: - name: Send Slack notifications if: always() && inputs.dry_run != 'true' env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} run: | set -euo pipefail diff --git a/.github/workflows/notify-pr.yml b/.github/workflows/notify-pr.yml index 8aa00d9..9179aec 100644 --- a/.github/workflows/notify-pr.yml +++ b/.github/workflows/notify-pr.yml @@ -11,7 +11,7 @@ jobs: - name: Notify Slack if: github.actor != 'github-actions[bot]' env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} PR_TITLE: ${{ github.event.pull_request.title }} PR_URL: ${{ github.event.pull_request.html_url }} PR_NUMBER: ${{ github.event.pull_request.number }} diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index d7bccb7..5b339f1 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -33,7 +33,7 @@ jobs: - name: Notify Slack — success if: success() env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} REF_NAME: ${{ github.ref_name }} run: | if [ -n "$SLACK_WEBHOOK" ]; then @@ -46,7 +46,7 @@ jobs: - name: Notify Slack — failure if: failure() env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} GH_REPOSITORY: ${{ github.repository }} GH_RUN_ID: ${{ github.run_id }} run: | diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index df82548..02c13c4 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -109,7 +109,7 @@ jobs: - name: Notify Slack on success env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} RELEASE_VERSION: ${{ needs.build.outputs.version }} GH_REPOSITORY: ${{ github.repository }} run: | @@ -125,7 +125,7 @@ jobs: - name: Notify Slack on failure if: failure() env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} GH_REPOSITORY: ${{ github.repository }} GH_RUN_ID: ${{ github.run_id }} run: | diff --git a/.github/workflows/unreleased-check.yml b/.github/workflows/unreleased-check.yml index ee2f12e..24f3ef9 100644 --- a/.github/workflows/unreleased-check.yml +++ b/.github/workflows/unreleased-check.yml @@ -66,7 +66,7 @@ jobs: -d "$payload" || true fi env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} GH_REPOSITORY: ${{ github.repository }} UNRELEASED_COUNT: ${{ steps.unreleased.outputs.count }} UNRELEASED_TAG: ${{ steps.unreleased.outputs.tag }} diff --git a/.github/workflows/update-competitive-matrix.yml b/.github/workflows/update-competitive-matrix.yml index 6ef07f1..2d74fb7 100644 --- a/.github/workflows/update-competitive-matrix.yml +++ b/.github/workflows/update-competitive-matrix.yml @@ -55,7 +55,7 @@ jobs: -d "$payload" || true fi env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} PR_URL_OUTPUT: ${{ steps.pr.outputs.url }} - name: Notify Slack — failure if: failure() @@ -68,6 +68,6 @@ jobs: -d "$payload" || true fi env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} + SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }} GH_REPOSITORY: ${{ github.repository }} GH_RUN_ID: ${{ github.run_id }}