feat(ci): only send (and refresh) dependabot PRs weekly (#3477)

Despite `rebase-strategy: "disabled"`, dependabot will refresh (i.e. rebase) PRs on the specified schedule interval. With the addition of `Cargo.lock` to our repository, dependabot is opening a lot more PRs which consumes unnecessary CI resources.

We change the interval to "weekly" to reduce the noise and resource consumption.
This commit is contained in:
Thomas Eizinger
2023-02-17 10:54:32 +13:00
committed by GitHub
parent af68cc4d8e
commit dda6fc5dd7

View File

@ -3,7 +3,7 @@ updates:
- package-ecosystem: "cargo" - package-ecosystem: "cargo"
directory: "/" directory: "/"
schedule: schedule:
interval: "daily" interval: "weekly"
open-pull-requests-limit: 9999 open-pull-requests-limit: 9999
commit-message: commit-message:
prefix: "deps" prefix: "deps"