Skip to content

Commit 1146f4b

Browse files
authored
chore: lower dependabot noise (#121)
We have the Cargo.lock file checked in. This means that dependabot opens PR for every version change. That creates a lot of noise. I care about breaking new releases. This new config should hopefully fix that. Minor and patch releases should now be grouped into a single PR.
1 parent 21af1da commit 1146f4b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
version: 2
22
updates:
3+
# Non breaking changes will be grouped in a single PR. This way we can see
4+
# on the CI if any minor update accidentally broke our code.
5+
# Breaking changes will create individual PRs.
36
- package-ecosystem: "cargo"
47
directory: "/"
58
schedule:
69
interval: "daily"
10+
groups:
11+
minor-and-patch-updates:
12+
patterns:
13+
- "*"
14+
update-types: ["minor", "patch"]
715

816
- package-ecosystem: "github-actions"
917
directory: "/"

0 commit comments

Comments
 (0)