Skip to content

Commit d1aff37

Browse files
authored
chore(deps): correct composer cooldown — default-days 1 to 2, add conduction/* exclude (#541)
This app's composer entry already had a cooldown block, but with default-days: 1 (below the fleet floor of 2) and no exclude at all — a fresh conduction/* release would have waited the same as any third-party package instead of being exempt. Brings it in line with the fleet-wide floor gate-93 (composer-cooldown-config) enforces, and with this file's own npm entry which already excludes @conduction/*. See ConductionNL/hydra openspec/changes/composer-dependency-cooldown and ADR-093 (proposed, ConductionNL/hydra#591).
1 parent 6d91a5b commit d1aff37

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/dependabot.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,26 @@ updates:
4444
# composer had no entry at all, so the only composer PRs this repo ever saw
4545
# were security updates against `main` (e.g. #369, which bumped twig to
4646
# 3.27.0 — a version `development` already had).
47+
#
48+
# default-days corrected 1 -> 2 and exclude added: this entry had a cooldown
49+
# window but no first-party exclusion, so a fresh conduction/* release would
50+
# have waited the same one day as any third-party package instead of being
51+
# exempt — the fleet-wide floor gate-93 (composer-cooldown-config) enforces
52+
# is 2 days plus a conduction/* exclude, matching the npm entry above's
53+
# exclude and the fleet's `conduction/hydra-gates` / `conduction/coding-standard`
54+
# first-party dependencies.
4755
- package-ecosystem: "composer"
4856
directory: "/"
4957
target-branch: "development"
5058
schedule:
5159
interval: "weekly"
5260
open-pull-requests-limit: 10
5361
cooldown:
54-
default-days: 1
62+
default-days: 2
5563
include:
5664
- "*"
65+
exclude:
66+
- "conduction/*"
5767

5868
- package-ecosystem: "github-actions"
5969
directory: "/"

0 commit comments

Comments
 (0)