This is an automated email from the ASF dual-hosted git repository.

ppkarwasz pushed a commit to branch feat/update-dependabot-config
in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git

commit 0b0a115520ef31e250519b0629357eece7b979a8
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Sat Jul 25 10:17:44 2026 +0200

    Improve Dependabot group names and add update cooldown
    
    Rename the generic "all" dependency groups to ecosystem-specific names
    (maven-updates, gradle-updates, github-actions-updates) so Dependabot
    PR titles indicate which ecosystem is updated, instead of the
    uninformative "Bump the all group...". Also add a 7-day cooldown to
    avoid picking up releases that are less than a week old.
    
    Assisted-By: Claude Fable 5 <[email protected]>
---
 .github/dependabot.yaml | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
index 0be13d2..2c25fa4 100644
--- a/.github/dependabot.yaml
+++ b/.github/dependabot.yaml
@@ -31,8 +31,10 @@ updates:
       - "log4j-samples-graalvm"
     schedule:
       interval: weekly
+    cooldown:
+      default-days: 7
     groups:
-      all:
+      maven-updates:
         patterns:
           - "*"
     registries:
@@ -46,8 +48,10 @@ updates:
       - "/"
     schedule:
       interval: weekly
+    cooldown:
+      default-days: 7
     groups:
-      all:
+      gradle-updates:
         patterns:
           - "*"
     registries:
@@ -60,7 +64,9 @@ updates:
     directory: "/"
     schedule:
       interval: weekly
+    cooldown:
+      default-days: 7
     groups:
-      all:
+      github-actions-updates:
         patterns:
           - "*"

Reply via email to