From 1e70f6d4655b828b4dcd3cf63fe7ae8d9ea50cb0 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Mon, 17 Aug 2026 14:20:23 -0700 Subject: [PATCH] Exclude OpenTelemetry updates from the grouped weekly Renovate PR Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/renovate.json5 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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