From b4039e7fd085401ac7c03bc367f4619bfa49796b Mon Sep 17 00:00:00 2001 From: Ignacio Flores Date: Mon, 4 May 2026 11:26:32 -0300 Subject: [PATCH] Enhance dependabot configuration by adding groups for bundler, github-actions, and npm --- .github/dependabot.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f1c057bc..37209fbe 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,11 +4,23 @@ updates: directory: "/" schedule: interval: "weekly" + groups: + bundler: + patterns: + - "*" - package-ecosystem: "github-actions" directory: "/" schedule: interval: "weekly" + groups: + github_actions: + patterns: + - "*" - package-ecosystem: "npm" directory: "/" schedule: interval: "weekly" + groups: + npm: + patterns: + - "*"