From 9bdf998faa257e6b311b98b30c77fbc46fd94475 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Wed, 11 Mar 2026 09:54:23 +1000 Subject: [PATCH] Add pre-commit ecosystem to Dependabot Group dependabot updates to reduce repo noise Add descriptive group labels https://github.blog/changelog/2026-03-10-dependabot-now-supports-pre-commit-hooks/ https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#package-ecosystem- --- .github/dependabot.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2be0fbd92..619235e9f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,11 +5,27 @@ updates: directory: "/" schedule: interval: "daily" + groups: + bundler-dependencies: + patterns: + - "*" cooldown: default-days: 7 - package-ecosystem: "github-actions" directory: "/" schedule: interval: "daily" + groups: + github-actions-dependencies: + patterns: + - "*" cooldown: default-days: 7 + - package-ecosystem: "pre-commit" + directory: "/" + schedule: + interval: "daily" + groups: + pre-commit-hooks: + patterns: + - "*"