From 99f5252afe598684bb949f7ee8485feaa934b7d0 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 ea851027..a5b45952 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -12,10 +12,28 @@ updates: day: "monday" commit-message: prefix: "chore(deps):" + # 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