mirror of
https://github.com/GothenburgBitFactory/taskchampion-sync-server.git
synced 2026-04-05 17:20:35 +00:00
27 lines
753 B
YAML
27 lines
753 B
YAML
version: 2
|
|
updates:
|
|
# Enable version updates for GitHub actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
groups:
|
|
github-actions:
|
|
patterns: ["*"]
|
|
# Enable updates for Rust packages
|
|
- package-ecosystem: "cargo"
|
|
directory: "/" # Location of package manifests
|
|
schedule:
|
|
interval: "daily"
|
|
ignore:
|
|
# skip patch updates, as they can be quite noisy, but keep
|
|
# minor and major updates so that we don't fall too far
|
|
# behind
|
|
- dependency-name: "*"
|
|
update-types: ["version-update:semver-patch"]
|
|
groups:
|
|
cargo:
|
|
patterns: ["*"]
|
|
# leave major changes in their own PRs
|
|
update-types: ["minor", "patch"]
|