diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 5d89ca03d2f..6d47e2a9471 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -14,7 +14,8 @@ // ── Scheduling & grouping ────────────────────────────────────────── { - // group all patch updates into a single weekly PR + // 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', @@ -23,6 +24,10 @@ schedule: [ '* 0-7 * * 2', // weekly, before 8am on Tuesday ], + matchPackageNames: [ + '!io.opentelemetry**', + '!open-telemetry/**', + ], }, { // group GitHub Actions and dockerfile updates into a single weekly PR