Skip to content

Commit 1018891

Browse files
authored
Add weekly patch grouping (#435)
- Add weekly patch update grouping (Tuesday)
1 parent e621052 commit 1018891

1 file changed

Lines changed: 18 additions & 1 deletion

File tree

.github/renovate.json5

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,22 @@
66
'customManagers:githubActionsVersions',
77
],
88
packageRules: [
9+
10+
// ── Scheduling & grouping ──────────────────────────────────────────
11+
912
{
10-
// this is to reduce the number of renovate PRs by consolidating them into a weekly batch
13+
// group all patch updates into a single weekly PR
14+
groupName: 'all patch versions',
15+
matchUpdateTypes: [
16+
'patch',
17+
],
18+
schedule: [
19+
'before 8am on Tuesday',
20+
],
21+
},
22+
{
23+
// group all GitHub Actions updates into a single weekly PR
24+
// (must be after patch rule so that it wins for GH Action patches)
1125
matchManagers: [
1226
'github-actions',
1327
],
@@ -16,6 +30,9 @@
1630
],
1731
groupName: 'github actions',
1832
},
33+
34+
// ── Disabled updates ───────────────────────────────────────────────
35+
1936
{
2037
// pin opentelemetry-api dependency to: avoid churn, for conservative api version requirement,
2138
// and because opentelemetry-api is a compileOnly dependency

0 commit comments

Comments
 (0)