Skip to content

Commit e2cd526

Browse files
authored
Add weekly patch grouping (#208)
1 parent b1a1cad commit e2cd526

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

.github/renovate.json5

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,25 @@
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: [

0 commit comments

Comments
 (0)