File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 "helpers:pinGitHubActionDigestsToSemver" ,
66 ] ,
77 "packageRules" : [
8+
9+ // ── Scheduling & grouping ──────────────────────────────────────────
10+
811 {
9- // this is to reduce the number of renovate PRs by consolidating them into a weekly batch
12+ // group all patch updates into a single weekly PR
13+ "groupName" : "all patch versions" ,
14+ "matchUpdateTypes" : [ "patch" ] ,
15+ "schedule" : [ "before 8am on Tuesday" ]
16+ } ,
17+ {
18+ // group all GitHub Actions updates into a single weekly PR
19+ // (must be after patch rule so that it wins for GH Action patches)
1020 "matchManagers" : [ "github-actions" ] ,
1121 "extends" : [ "schedule:weekly" ] ,
1222 "groupName" : "github actions"
1323 } ,
24+
25+ // ── Disabled updates (Java version compatibility) ──────────────────
26+
1427 {
1528 // junit 6+ requires Java 17+
1629 matchPackageNames : [
You can’t perform that action at this time.
0 commit comments