Skip to content

Commit e20db0d

Browse files
Configure cooldown and limits for dependency updates
Added cooldown settings for GitHub Actions and npm dependencies.
1 parent 28c2152 commit e20db0d

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ updates:
1010
directory: /
1111
schedule:
1212
interval: weekly
13+
cooldown:
14+
default-days: 7
15+
open-pull-requests-limit: 10
1316
groups:
1417
actions-minor:
1518
update-types:
@@ -20,6 +23,12 @@ updates:
2023
directory: /
2124
schedule:
2225
interval: weekly
26+
cooldown:
27+
default-days: 7
28+
semver-major-days: 7
29+
semver-minor-days: 3
30+
semver-patch-days: 2
31+
open-pull-requests-limit: 10
2332
groups:
2433
npm-development:
2534
dependency-type: development
@@ -29,4 +38,4 @@ updates:
2938
npm-production:
3039
dependency-type: production
3140
update-types:
32-
- patch
41+
- patch

0 commit comments

Comments
 (0)