Skip to content

Commit a53fcf7

Browse files
hyperpolymathclaude
andcommitted
fix(ci): group Dependabot updates into one PR per ecosystem
Without a groups: block Dependabot opens ONE PR PER DEPENDENCY. Every one of those PRs re-fires every workflow in the repo, so a single estate-wide bump (e.g. actions/checkout 7.0.0 -> 7.0.1) fans out into N PRs x M workflow runs of notifications. This was a measurable amplifier of the notification storm. Grouping with patterns: ["*"] makes the same bump a single PR, matching the 223 estate repos that already do this. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent ffeeae7 commit a53fcf7

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,11 @@ updates:
66
schedule:
77
interval: "daily"
88
open-pull-requests-limit: 10
9+
# Batch this ecosystem into a single PR. Ungrouped, Dependabot
10+
# opens one PR per dependency, and each PR re-fires every
11+
# workflow in the repo.
12+
groups:
13+
github-actions:
14+
patterns:
15+
- "*"
916

0 commit comments

Comments
 (0)