Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,26 @@ updates:
# composer had no entry at all, so the only composer PRs this repo ever saw
# were security updates against `main` (e.g. #369, which bumped twig to
# 3.27.0 — a version `development` already had).
#
# default-days corrected 1 -> 2 and exclude added: this entry had a cooldown
# window but no first-party exclusion, so a fresh conduction/* release would
# have waited the same one day as any third-party package instead of being
# exempt — the fleet-wide floor gate-93 (composer-cooldown-config) enforces
# is 2 days plus a conduction/* exclude, matching the npm entry above's
# exclude and the fleet's `conduction/hydra-gates` / `conduction/coding-standard`
# first-party dependencies.
- package-ecosystem: "composer"
directory: "/"
target-branch: "development"
schedule:
interval: "weekly"
open-pull-requests-limit: 10
cooldown:
default-days: 1
default-days: 2
include:
- "*"
exclude:
- "conduction/*"

- package-ecosystem: "github-actions"
directory: "/"
Expand Down
Loading