From 107e1c18b3ec31bb8d3ad7e9ea82e9017705c749 Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Mon, 5 Jan 2026 17:14:00 -0600 Subject: [PATCH] Group dependabot updates by package origin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add dependency groups to consolidate related package updates into single PRs, reducing noise and making updates easier to review: - k8s: Groups k8s.io/* and sigs.k8s.io/* packages - openshift: Groups github.com/openshift/* packages - other-go-modules: Groups remaining dependencies 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Opus 4.5 --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 80fdec76..9f27202c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,20 @@ updates: - "ok-to-test" - "dependencies" open-pull-requests-limit: 5 + groups: + k8s: + patterns: ["k8s.io/*", "sigs.k8s.io/*"] + update-types: ["major", "minor", "patch"] + openshift: + patterns: ["github.com/openshift/*"] + update-types: ["major", "minor", "patch"] + other-go-modules: + patterns: ["*"] + exclude-patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" + - "github.com/openshift/*" + update-types: ["major", "minor", "patch"] ignore: - dependency-name: "*" update-types: ["version-update:semver-patch"]