We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a641f26 commit e873bd4Copy full SHA for e873bd4
.github/dependabot.yml
@@ -17,6 +17,14 @@ updates:
17
schedule:
18
interval: "weekly"
19
groups:
20
+ # CAPI core minor upgrades get dedicated PRs via the capi-core-minor group below,
21
+ # while patch upgrades are handled by the all-go-mod-patch-and-minor group.
22
+ # This helps us handle breaking changes in CAPI core that happen frequently on minor releases.
23
+ # From Dependabot docs:
24
+ # > If a dependency matches more than one rule, it's included in the first group that it matches.
25
+ capi-core-minor:
26
+ patterns: [ "sigs.k8s.io/cluster-api", "sigs.k8s.io/cluster-api/test" ]
27
+ update-types: [ "minor" ]
28
all-go-mod-patch-and-minor:
29
patterns: [ "*" ]
30
update-types: [ "patch", "minor" ]
0 commit comments