Centralize Slack notifications on org-level SLACK_WEBHOOK_OSS_ALERTS secret#92
Merged
Merged
Conversation
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Standardize all workflow Slack notifications onto the CopilotKit org-level secret
SLACK_WEBHOOK_OSS_ALERTS(visibility: all) instead of the repo-localSLACK_WEBHOOKsecret.This is a pure secret-name swap — both secrets point at the same #oss-alerts channel, so there is no channel change and no behavior change. Only the
${{ secrets.SLACK_WEBHOOK }}reference token is renamed to${{ secrets.SLACK_WEBHOOK_OSS_ALERTS }}; the localSLACK_WEBHOOK:env-var alias names inside each step are left intact.Workflows touched (11 references across 8 files)
notify-pr.ymldeploy-health-check.ymldeploy-pages.ymlindex-health-monitor.ymlpublish-docker.yml(x2)publish-release.yml(x2)unreleased-check.ymlupdate-competitive-matrix.yml(x2)Validation
python3 yaml.safe_loadpasses on all 8 changed workflows.actionlintclean for the change (only pre-existing, unrelated SC2086 info-level shellcheck warnings remain, none in the touchedenv:blocks).Follow-up
After this merges, the now-redundant repo-local
SLACK_WEBHOOKsecret will be deleted (handled separately — not part of this PR).