File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed
Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 11version : 2
22updates :
3+ # `version-strategy` is not supported on a group level, hence we need two
4+ # separate rules for breaking and non-breaking changes.
5+ # Non breaking changes will be grouped in a single PR and only their
6+ # lock-files will be updated. This way we can see on the CI if any minor
7+ # update accidentally broke our code.
8+ # Breaking changes will create individual PRs.
39 - package-ecosystem : " cargo"
410 directory : " /"
511 schedule :
612 interval : " daily"
13+ groups :
14+ minor-and-patch-updates :
15+ patterns :
16+ - " *"
17+ update_types :
18+ - " minor"
19+ - " patch"
20+ versioning-strategy : lockfile-only
721 ignore :
822 - dependency-name : " *"
9- update-types : ["version-update:semver-minor", "version-update:semver-patch"]
23+ update-types : ["version-update:semver-major"]
24+ - package-ecosystem : " cargo"
25+ directory : " /"
26+ schedule :
27+ interval : " daily"
28+ versioning-strategy : auto
29+ ignore :
30+ - dependency-name : " *"
31+ update-types : ["version-update:semver-patch", "version-update:semver-minor"]
1032
1133 - package-ecosystem : " github-actions"
1234 directory : " /"
You can’t perform that action at this time.
0 commit comments