Skip to content

Commit 12dc505

Browse files
committed
Dependabot: update config
This commit makes two changes to the Dependabot config: 1. It introduces a "cooldown" period for updates to a new major release of action runners. What this means, is that for updates to a new major, the Dependabot will be delayed by 10 days, which should give projects the chance to fix any "teething problems". 2. It introduces a "group". By default Dependabot raises individual PRs for each update. Now, it will group updates to new minor or patch release for all action runners into a single PR. Updates to new major releases of action runners will still be raised as individual PRs. Refs: * https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/optimizing-pr-creation-version-updates * https://docs.github.com/en/code-security/dependabot/working-with-dependabot/dependabot-options-reference
1 parent 4d4350f commit 12dc505

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,11 @@ updates:
2727
prefix: "GH Actions:"
2828
labels:
2929
- "Type: chores/QA"
30+
cooldown:
31+
semver-major-days: 10
32+
groups:
33+
action-runners:
34+
applies-to: version-updates
35+
update-types:
36+
- "minor"
37+
- "patch"

0 commit comments

Comments
 (0)