chore(ci): remove per-repo Dependabot alert workflows - #4384
Merged
Conversation
|
nicktrn
approved these changes
Jul 27, 2026
nicktrn
marked this pull request as ready for review
July 27, 2026 09:49
nicktrn
enabled auto-merge (squash)
July 27, 2026 09:49
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.
✅ Checklist
Summary
Before: two scheduled workflows in this repo posted Dependabot digests to Slack — a critical-alert check every morning at 08:00 UTC, and a summary of all open alerts on Mondays at 08:00 UTC.
After: neither runs. This reporting is handled centrally now, so the two in-repo workflows were duplicating it.
How: deletes
.github/workflows/dependabot-critical-alerts.ymland.github/workflows/dependabot-weekly-summary.yml. Both were self-contained — inline shell, no shared scripts or composite actions — so nothing else in.github/referenced them.Dependabot itself is unchanged:
.github/dependabot.yml, alerts, and version updates all keep working. This removes only the two Slack notifiers.The
ENABLE_DEPENDABOT_ALERTSrepository variable existed only to switch these two workflows off. Nothing else reads it, so it can be removed from the repository settings if it's set.Testing
No runtime code changes — this PR only removes two scheduled workflow files. Verified that nothing else in the repo references either filename, either workflow name, or the
ENABLE_DEPENDABOT_ALERTSvariable.Changelog
Removed the two in-repo scheduled workflows that posted Dependabot digests to Slack.