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

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


The following commit(s) were added to refs/heads/main by this push:
     new aea3f22  Improve Dependabot group names and add update cooldown (#406)
aea3f22 is described below

commit aea3f226db0d550ea5871329c56b1eb87007692b
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Sun Aug 2 19:55:17 2026 +0200

    Improve Dependabot group names and add update cooldown (#406)
    
    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 | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml
index 0be13d2..c63ec2c 100644
--- a/.github/dependabot.yaml
+++ b/.github/dependabot.yaml
@@ -31,10 +31,13 @@ updates:
       - "log4j-samples-graalvm"
     schedule:
       interval: weekly
+    cooldown:
+      default-days: 7
     groups:
-      all:
-        patterns:
-          - "*"
+      maven-minor-updates:
+        update-types:
+          - "minor"
+          - "patch"
     registries:
       - maven-central
     ignore:
@@ -46,10 +49,13 @@ updates:
       - "/"
     schedule:
       interval: weekly
+    cooldown:
+      default-days: 7
     groups:
-      all:
-        patterns:
-          - "*"
+      gradle-minor-updates:
+        update-types:
+          - "minor"
+          - "patch"
     registries:
       - maven-central
     ignore:

Reply via email to