Skip to content

Commit c66dbf7

Browse files
committed
Tweak Dependabot schedule and update rules
Change Dependabot update cadence from daily to weekly, and add a 7-day cooldown for semver-minor and semver-patch updates to reduce churn. Also update the global ignore rule to skip semver-major updates (previously it was ignoring semver-patch), so major updates are not opened as PRs by Dependabot.
1 parent 8c1dd3c commit c66dbf7

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/dependabot.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,14 @@ updates:
1515
directory: "/core"
1616
open-pull-requests-limit: 2
1717
schedule:
18-
interval: "daily"
18+
interval: "weekly"
19+
cooldown:
20+
semver-minor-days: 7
21+
semver-patch-days: 7
1922
ignore:
2023
- dependency-name: "*"
2124
update-types:
22-
- "version-update:semver-patch"
25+
- "version-update:semver-major"
2326

2427
- package-ecosystem: "github-actions"
2528
directory: "/"

0 commit comments

Comments
 (0)