From 5da316e95ebf33a3c44f59f65bce964f5a6c2565 Mon Sep 17 00:00:00 2001 From: Ben Kochie Date: Wed, 10 Apr 2024 13:17:16 +0200 Subject: [PATCH] Add dependabot groupings (#6598) Add groupings for Go modules updates in dependabot. This will reduce the number of PRs when projects update. * `k8s.io/*` * `go.etcd.io/etcd/*` Signed-off-by: SuperQ --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 69c884aee..fdb5058f3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,13 @@ updates: directory: "/" schedule: interval: "weekly" + groups: + k8s.io: + patterns: + - "k8s.io/*" + go.etcd.io: + patterns: + - "go.etcd.io/etcd/*" - package-ecosystem: "github-actions" directory: "/"