From f8d731d6687cfdc48d4d47abcdfbea1ebc762829 Mon Sep 17 00:00:00 2001 From: Morgan Epp <60796713+epmog@users.noreply.github.com> Date: Wed, 22 Jul 2026 11:54:48 -0500 Subject: [PATCH] chore(dependabot): group dependabot PRs Signed-off-by: Morgan Epp <60796713+epmog@users.noreply.github.com> --- .github/dependabot.yml | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ffca0e3..22747be 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -16,10 +16,28 @@ updates: # black 26+ drops Python 3.9 compat and produces different formatting - dependency-name: "black" update-types: ["version-update:semver-major"] + # Combine all minor and patch bumps into a single PR. Major bumps do not + # match this group and so each get their own individual PR. + groups: + pip-minor-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" - package-ecosystem: "github-actions" directory: "/" # Location of package manifests schedule: interval: "weekly" day: "monday" commit-message: - prefix: "chore(github):" \ No newline at end of file + prefix: "chore(github):" + # Combine all minor and patch bumps into a single PR. Major bumps do not + # match this group and so each get their own individual PR. + groups: + github-actions-minor-patch: + patterns: + - "*" + update-types: + - "minor" + - "patch" \ No newline at end of file