Revive Dependabot (#1264)

Closes https://github.com/paritytech/polkadot-sdk/issues/1174

Configures dependabot to run daily but group some dependencies
together that I assume to be sember abiding.

Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
This commit is contained in:
Oliver Tale-Yazdi
2023-08-29 21:30:18 +02:00
committed by GitHub
parent 9acb06717e
commit ebf6e66b02
+27
View File
@@ -0,0 +1,27 @@
version: 2
updates:
# Update github actions:
- package-ecosystem: github-actions
directory: '/'
labels: ["A1-insubstantial", "R0-silent"]
schedule:
interval: daily
# Update Rust dependencies:
- package-ecosystem: "cargo"
directory: "/"
labels: ["A1-insubstantial", "R0-silent"]
schedule:
interval: "daily"
groups:
# We assume these crates to be semver abiding and can therefore group them together.
known_good_semver:
patterns:
- "syn"
- "quote"
- "log"
- "paste"
- "*serde*"
- "clap"
update-types:
- "minor"
- "patch"