borg/.github/dependabot.yml
Thomas Waldmann c5dbf5de6f
dependabot: order the cooldown keys by increasing duration
default-days, semver-minor-days, semver-major-days now read 14, 30, 90
in both ecosystems, so the escalation is obvious at a glance.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-30 00:59:23 +02:00

31 lines
737 B
YAML

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
cooldown:
# default-days also covers patch releases and actions not using semver.
default-days: 14
semver-minor-days: 30
semver-major-days: 90
groups:
actions:
patterns:
- "*"
- package-ecosystem: "pip"
directory: "/requirements.d"
ignore:
- dependency-name: "black"
schedule:
interval: "weekly"
cooldown:
# default-days also covers patch releases and packages not using semver.
default-days: 14
semver-minor-days: 30
semver-major-days: 90
groups:
pip-dependencies:
patterns:
- "*"