From 83f072b3bef916a43a165f56d77f369c2dc235d4 Mon Sep 17 00:00:00 2001 From: Sebastian Spaink Date: Mon, 20 Jul 2026 13:11:29 -0500 Subject: [PATCH] chore: group Dependabot updates into one PR per ecosystem Add a catch-all group to each ecosystem (gradle, github-actions, gomod) so Dependabot bundles all version updates into a single PR per ecosystem instead of opening one PR per dependency. Signed-off-by: Sebastian Spaink --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bc3204cc..8fd934c6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,15 +6,27 @@ updates: interval: "weekly" cooldown: default-days: 7 + groups: + gradle-dependencies: + patterns: + - "*" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" cooldown: default-days: 7 + groups: + github-actions-dependencies: + patterns: + - "*" - package-ecosystem: "gomod" directory: "/tools/generate-compliance-tests" schedule: interval: "weekly" cooldown: default-days: 7 + groups: + gomod-dependencies: + patterns: + - "*"