From 9f6148b758e5a70d0fa1a0ad67e0df2a11cd4362 Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sun, 16 Aug 2026 10:18:46 -0500 Subject: [PATCH] ci(chore[deps]) Adopt the deps commit prefix why: AGENTS.md declares java(deps) as the type for dependency commits, but the Dependabot entries set no prefix, so every bump landed with a subject matching neither this repository nor its sibling ports. what: - Prefix commits java(deps) and ci(deps). The trailing space suppresses the colon Dependabot would otherwise append, which is how the Python repositories' own dependency commits read. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 3c4b7fd..5c793b2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,6 +11,9 @@ updates: groups: gradle: patterns: ["*"] + # The trailing space stops Dependabot appending a colon. + commit-message: + prefix: "java(deps) " # A version released moments ago has had no time to be found compromised, and this project is # never in such a hurry that it needs one. cooldown: @@ -23,5 +26,7 @@ updates: groups: actions: patterns: ["*"] + commit-message: + prefix: "ci(deps) " cooldown: default-days: 7