diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ea85102..a5b4595 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