Browse Source

ci: add Dependabot config for github-actions and cargo.

Weekly schedule (Mondays), 7-day cooldown, grouped updates to keep PR
  noise low. Actions updates prefixed `ci`, Cargo prefixed `deps`. Major
  version bumps for Cargo crates are ignored - those are for manualreview
  given they can introduce breaking API or behaviour changes.
pull/6987/head
TriplEight 2 weeks ago
parent
commit
695b8dec9e
No known key found for this signature in database GPG Key ID: 9E9B1BBD89CE29A1
  1. 39
      .github/dependabot.yml

39
.github/dependabot.yml

@ -0,0 +1,39 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Europe/Amsterdam"
open-pull-requests-limit: 10
cooldown:
days: 7
groups:
github-actions:
patterns:
- "*"
commit-message:
prefix: "ci"
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "Europe/Amsterdam"
open-pull-requests-limit: 10
cooldown:
days: 7
groups:
cargo-dependencies:
patterns:
- "*"
commit-message:
prefix: "deps"
ignore:
# Ignore major version bumps — review these manually
- dependency-name: "*"
update-types: ["version-update:semver-major"]
Loading…
Cancel
Save