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