Skip to content

Commit ca474b2

Browse files
committed
chore: configure dependabot with 7-day cooldown and grouped updates
- Add cooldown of 7 days (bake time) before dependabot opens PRs for new versions - Group all updates per ecosystem into a single PR using wildcard patterns - Reduces PR noise and ensures new versions have time to stabilize
1 parent 5f226e5 commit ca474b2

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,61 @@ updates:
44
directory: /
55
schedule:
66
interval: "weekly"
7+
cooldown:
8+
default-days: 7
9+
groups:
10+
go-dependencies:
11+
patterns:
12+
- "*"
713
- package-ecosystem: "github-actions"
814
directory: ".github/workflows"
915
schedule:
1016
interval: weekly
17+
cooldown:
18+
default-days: 7
19+
groups:
20+
github-actions:
21+
patterns:
22+
- "*"
1123
- package-ecosystem: "github-actions"
1224
directory: "/template/workflows/helm/.github/workflows"
1325
schedule:
1426
interval: "weekly"
27+
cooldown:
28+
default-days: 7
29+
groups:
30+
github-actions:
31+
patterns:
32+
- "*"
1533
- package-ecosystem: "github-actions"
1634
directory: "/template/workflows/kustomize/.github/workflows"
1735
schedule:
1836
interval: "weekly"
37+
cooldown:
38+
default-days: 7
39+
groups:
40+
github-actions:
41+
patterns:
42+
- "*"
1943
- package-ecosystem: "github-actions"
2044
directory: "/template/workflows/manifests/.github/workflows"
2145
schedule:
2246
interval: "weekly"
47+
cooldown:
48+
default-days: 7
49+
groups:
50+
github-actions:
51+
patterns:
52+
- "*"
2353
- package-ecosystem: "github-actions"
2454
directory: "/"
2555
schedule:
2656
interval: "weekly"
57+
cooldown:
58+
default-days: 7
59+
groups:
60+
github-actions:
61+
patterns:
62+
- "*"
2763
labels:
2864
- "dependencies"

0 commit comments

Comments
 (0)