Skip to content

Commit 7964f10

Browse files
authored
Group dependabot updates into weekly PRs (#302)
Add grouping (minor+patch) to the already-weekly dependabot config. Major version bumps stay outside the groups so they remain individually reviewable. Assisted by AI
1 parent 72199a2 commit 7964f10

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,50 @@ updates:
1111
directory: "/"
1212
schedule:
1313
interval: "weekly"
14+
groups:
15+
github-actions:
16+
patterns:
17+
- "*"
18+
update-types:
19+
- "minor"
20+
- "patch"
1421

1522
# Go
1623
- package-ecosystem: "gomod"
1724
# checks /go.mod
1825
directory: "/"
1926
schedule:
2027
interval: "weekly"
28+
groups:
29+
go-modules:
30+
patterns:
31+
- "*"
32+
update-types:
33+
- "minor"
34+
- "patch"
2135

2236
# Docker
2337
- package-ecosystem: "docker"
2438
# checks /Dockerfile
2539
directory: "/"
2640
schedule:
2741
interval: "weekly"
42+
groups:
43+
docker:
44+
patterns:
45+
- "*"
46+
update-types:
47+
- "minor"
48+
- "patch"
2849

2950
- package-ecosystem: "npm"
3051
directory: "/"
3152
schedule:
3253
interval: "weekly"
54+
groups:
55+
npm:
56+
patterns:
57+
- "*"
58+
update-types:
59+
- "minor"
60+
- "patch"

0 commit comments

Comments
 (0)