Skip to content

Commit aeded16

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 b4c981a commit aeded16

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
@@ -14,3 +14,11 @@ updates:
1414
prefix: "GH Actions:"
1515
labels:
1616
- "Type: chores/QA/automation"
17+
cooldown:
18+
semver-major-days: 10
19+
groups:
20+
action-runners:
21+
applies-to: version-updates
22+
update-types:
23+
- "minor"
24+
- "patch"

0 commit comments

Comments
 (0)