Skip to content

Commit 7a56e02

Browse files
committed
Use semver-granular cooldowns for bundler dependabot ecosystem
Replaces the generic default-days cooldown with semver-granular values so low-risk patches flow faster while major bumps get more soak time. Also corrects github-actions cooldown from 10 days to 7 days.
1 parent ff2f9e7 commit 7a56e02

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ updates:
99
development-dependencies:
1010
dependency-type: "development"
1111
cooldown:
12-
default-days: 10
12+
semver-major-days: 7
13+
semver-minor-days: 3
14+
semver-patch-days: 2
15+
default-days: 7
1316
- package-ecosystem: github-actions
1417
directory: "/"
1518
groups:
@@ -20,4 +23,4 @@ updates:
2023
interval: weekly
2124
open-pull-requests-limit: 10
2225
cooldown:
23-
default-days: 10
26+
default-days: 7

0 commit comments

Comments
 (0)