From 4c04807a10eb4ac5d3538915faf273b7fa09cd7c Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Tue, 6 Jan 2026 08:49:59 -0600 Subject: [PATCH] Add k8s and openshift dependency groups to dependabot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Group k8s.io/* and sigs.k8s.io/* dependencies together, and github.com/openshift/* dependencies in their own group, to consolidate related dependency update PRs and reduce noise from individual updates. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 49d63c06af64..c55f3f65e4c7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,9 +9,20 @@ updates: applies-to: security-updates patterns: - "*" + k8s: + patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" + openshift: + patterns: + - "github.com/openshift/*" go-dependencies: patterns: - "*" + exclude-patterns: + - "k8s.io/*" + - "sigs.k8s.io/*" + - "github.com/openshift/*" labels: - "approved" - "lgtm"