This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch ci/dependabot-cooldown-default-days in repository https://gitbox.apache.org/repos/asf/struts.git
commit 6cb6922b0285a22e9a01c05c1341b1a8374bd944 Author: Lukasz Lenart <[email protected]> AuthorDate: Wed May 20 09:02:34 2026 +0200 ci(dependabot): fix cooldown property name The `cooldown` block expects `default-days`, not `default`. Using the wrong key fails schema validation, causing Dependabot to silently fall back to the previously valid config — which still targets `release/struts-6-8-x` instead of `support/struts-6-x-x`. Also adds a 3-day cooldown to the `main` maven entry for consistency. Co-Authored-By: Claude Opus 4.7 <[email protected]> --- .github/dependabot.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 70ada4ebf..969bb0a45 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,13 +8,15 @@ updates: directory: "/" schedule: interval: "weekly" + cooldown: + default-days: 3 target-branch: "main" - package-ecosystem: "maven" directory: "/" schedule: interval: "weekly" cooldown: - default: 4 + default-days: 4 target-branch: "support/struts-6-x-x" ignore: - dependency-name: "org.eclipse.jetty:jetty-maven-plugin"
