Skip to content

Commit f8d731d

Browse files
committed
chore(dependabot): group dependabot PRs
Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com>
1 parent 2ca0fc0 commit f8d731d

1 file changed

Lines changed: 19 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,28 @@ updates:
1616
# black 26+ drops Python 3.9 compat and produces different formatting
1717
- dependency-name: "black"
1818
update-types: ["version-update:semver-major"]
19+
# Combine all minor and patch bumps into a single PR. Major bumps do not
20+
# match this group and so each get their own individual PR.
21+
groups:
22+
pip-minor-patch:
23+
patterns:
24+
- "*"
25+
update-types:
26+
- "minor"
27+
- "patch"
1928
- package-ecosystem: "github-actions"
2029
directory: "/" # Location of package manifests
2130
schedule:
2231
interval: "weekly"
2332
day: "monday"
2433
commit-message:
25-
prefix: "chore(github):"
34+
prefix: "chore(github):"
35+
# Combine all minor and patch bumps into a single PR. Major bumps do not
36+
# match this group and so each get their own individual PR.
37+
groups:
38+
github-actions-minor-patch:
39+
patterns:
40+
- "*"
41+
update-types:
42+
- "minor"
43+
- "patch"

0 commit comments

Comments
 (0)