Skip to content

Commit 28a30b7

Browse files
committed
Dependabot: update config
This commit makes the following change to the Dependabot config: * 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 9178beb commit 28a30b7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ updates:
1616
prefix: "GH Actions:"
1717
labels:
1818
- "Type: testing/chores/QA"
19+
groups:
20+
action-runners:
21+
applies-to: version-updates
22+
update-types:
23+
- "minor"
24+
- "patch"
1925

2026
# Handle updates for the orphan gh-pages branch.
2127
- package-ecosystem: "github-actions"
@@ -28,3 +34,9 @@ updates:
2834
prefix: "GH Pages/Actions:"
2935
labels:
3036
- "Type: testing/chores/QA"
37+
groups:
38+
action-runners:
39+
applies-to: version-updates
40+
update-types:
41+
- "minor"
42+
- "patch"

0 commit comments

Comments
 (0)