From e986314c2dfb2bac3986825402bbbd743b2711a8 Mon Sep 17 00:00:00 2001 From: Tiger Kaovilai Date: Thu, 16 Jul 2026 15:56:31 -0400 Subject: [PATCH] Group all Go dependency updates in Dependabot Dependabot was configured but had no groups, so Go module bumps arrive as one PR per dependency. Add a catch-all go-dependencies group so all Go module updates land in a single PR, matching migtools/filebrowser#28. Signed-off-by: Tiger Kaovilai --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 07f6b705b43..95f1685ba21 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,10 @@ updates: directory: "/" # Location of package manifests schedule: interval: "monthly" + groups: + go-dependencies: + patterns: + - "*" # Dependencies listed in .github/workflows/*.yml - package-ecosystem: "github-actions"