Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,20 @@
// ── Scheduling & grouping ──────────────────────────────────────────

{
// group all patch updates into a single weekly PR
groupName: 'all patch versions',
// group all patch and minor updates into a single weekly PR
// (OpenTelemetry artifacts are excluded so that dogfooding and cascaded releases land individually)
groupName: 'all patch and minor versions',
matchUpdateTypes: [
'patch',
'minor',
],
schedule: [
'* 0-7 * * 2', // weekly, before 8am on Tuesday
],
matchPackageNames: [
'!io.opentelemetry**',
'!open-telemetry/**',
],
},
{
// group all GitHub Actions updates into a single weekly PR
Expand Down
Loading