From 48950198841dfd345f3f3a99719d2d2f99f0c71b Mon Sep 17 00:00:00 2001 From: Spencer Schrock Date: Wed, 3 Jul 2024 13:47:20 -0700 Subject: [PATCH] fix dependabot config to group docker images (#4211) This is apparently required with the current implementation of multi dir PRs. Signed-off-by: Spencer Schrock --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b26072f7bbb..9068436f05e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -41,3 +41,12 @@ updates: rebase-strategy: disabled commit-message: prefix: ":seedling:" + # currently needed to get PRs which actually update multiple directories in a single PR + # https://github.com/dependabot/dependabot-core/issues/2178#issuecomment-2109164992 + groups: + golang: + patterns: + - "golang" + distroless: + patterns: + - "distroless/base"