Skip to content

Commit 0c630b4

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 6df2230 commit 0c630b4

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
@@ -36,3 +36,11 @@ updates:
3636
prefix: "GH Actions:"
3737
labels:
3838
- "Type: builds / deploys / releases"
39+
cooldown:
40+
semver-major-days: 10
41+
groups:
42+
action-runners:
43+
applies-to: version-updates
44+
update-types:
45+
- "minor"
46+
- "patch"

0 commit comments

Comments
 (0)