mirror of
https://github.com/cargo-bins/cargo-binstall.git
synced 2025-04-23 14:08:43 +00:00

Fixed #1353 Merge all dependabot configuration for cargo into one, with directory setting to `/` so that it will check for dep updates for entire workspace while also updating lockfile in PR. To prevent it from opening too many PRs, it's configured to run on every Saturday, after `upgrade-transitive-deps.yml` is run. It will also group all dependencies into one PR to prevent opening too many PRs. Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
21 lines
544 B
YAML
21 lines
544 B
YAML
# Dependabot dependency version checks / updates
|
|
|
|
version: 2
|
|
updates:
|
|
- package-ecosystem: "github-actions"
|
|
# Workflow files stored in the
|
|
# default location of `.github/workflows`
|
|
directory: "/"
|
|
schedule:
|
|
interval: "daily"
|
|
- package-ecosystem: "cargo"
|
|
directory: "/"
|
|
schedule:
|
|
# Only run dependabot after all compatible upgrades and transitive deps
|
|
# are done to reduce amount of PRs opened.
|
|
interval: "weekly"
|
|
day: "saturday"
|
|
groups:
|
|
deps:
|
|
patterns:
|
|
- "*"
|