From bc4c08fe0e7ca18d2b45649f8ffea84ce7a0ba80 Mon Sep 17 00:00:00 2001 From: Lukas Holecek Date: Mon, 3 Feb 2025 11:08:35 +0100 Subject: [PATCH] Enable group dependabot updates This should create a single PR for minor and patch version updates instead of multiple conflicting ones. --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f6451d3..746c62b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,3 +5,10 @@ updates: directory: "/" schedule: interval: "monthly" + groups: + python-packages: + patterns: + - "*" + update-types: + - "minor" + - "patch"