From 7f2d941c5c3fb267f159cb71cdd806c01209d346 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Evrard Date: Tue, 26 May 2026 14:04:27 +0200 Subject: [PATCH] Alter bumping work of dependabot Without this, dependabot would separate all the dependencies in different PRs. This is inefficient: The only group of PRs that need to be separate, is kubernetes: We only want to bump them for a new release. On top of that, those kubernetes dependencies also need to be bumped together. This fixes the dependabot config to match that use case. Signed-off-by: Jean-Philippe Evrard --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f6fa9fb..5673349 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,17 @@ updates: directory: "/" schedule: interval: "daily" + groups: + all: + patterns: + - "*" + exclude-patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" + kubernetes: + patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" - package-ecosystem: "docker" directory: "/" schedule: