diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 20b9329..42e4d06 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,8 +10,21 @@ updates: directory: "/" schedule: interval: "weekly" + # Group all CI dependencies into a single PR + groups: + ci: + patterns: + - "*" - package-ecosystem: "pip" directory: "/" schedule: interval: "weekly" + # Group all Python dependencies into a single PR + groups: + dev-dependencies: + patterns: + - "*" + update-types: + - "minor" + - "patch"