Make dependabot less aggressive (#771)

* Make dependabot less aggressive

And ignore sp- crates, since they need to be updated together, and dependabot can't yet do grouped PRs.

We should periodically just keep on top of this anyway, but I don't think we need to be constantly updating them.

* dependency-name

* Try weekly instead of monthly
This commit is contained in:
James Wilson
2023-01-11 12:33:40 +00:00
committed by GitHub
parent a71f32f60d
commit a433082118
+10 -2
View File
@@ -3,8 +3,16 @@ updates:
- package-ecosystem: "cargo"
directory: "/"
schedule:
interval: "daily"
interval: weekly
ignore:
# these need to be updated together, so dependabot PRs
# are just noise. So, ignore them:
- dependency-name: sp-core
- dependency-name: sp-keyring
- dependency-name: sp-runtime
- dependency-name: sp-core-hashing
- dependency-name: sp-version
- package-ecosystem: github-actions
directory: '/'
schedule:
interval: daily
interval: weekly