From 22d8e9859e3eaef14af9234fed36adb01d474e76 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Mon, 17 Aug 2026 13:55:07 -0700 Subject: [PATCH 1/2] Group minor updates with patch updates in Renovate Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/renovate.json5 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index a380e77..80b83ec 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -11,10 +11,11 @@ // ── 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 + groupName: 'all patch and minor versions', matchUpdateTypes: [ 'patch', + 'minor', ], schedule: [ '* 0-7 * * 2', // weekly, before 8am on Tuesday From 2f617f91a639959b0e32f4b8b5a29c6e4c8852f4 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Mon, 17 Aug 2026 14:19:20 -0700 Subject: [PATCH 2/2] Exclude OpenTelemetry artifacts from the weekly group Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/renovate.json5 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 80b83ec..b521b9b 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -12,6 +12,7 @@ { // 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', @@ -20,6 +21,10 @@ schedule: [ '* 0-7 * * 2', // weekly, before 8am on Tuesday ], + matchPackageNames: [ + '!io.opentelemetry**', + '!open-telemetry/**', + ], }, { // group all GitHub Actions updates into a single weekly PR