From 7497d6c548199e6db8828036dd25a5f80fd46991 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Wed, 25 Mar 2026 17:19:42 -0700 Subject: [PATCH] Use explicit Renovate Tuesday morning schedules This switches Renovate scheduling to an explicit Tuesday morning cron schedule: `* 0-7 * * 2` The goal is to preserve the existing weekly timing while moving away from deprecated older schedule syntax and reducing repeated same-day Renovate churn. Ported from https://github.com/open-telemetry/semantic-conventions/pull/3576 --- .github/renovate.json5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index a33f833c85..bb5d4c2921 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -12,14 +12,14 @@ { "groupName": "all patch versions", "matchUpdateTypes": ["patch", "digest"], - "schedule": ["before 8am on Tuesday"], + "schedule": ["* 0-7 * * 2"], // weekly, before 8am on Tuesday "matchPackageNames": ["!io.opentelemetry**"] }, { // group all GitHub Actions updates into a single weekly PR // (must be after patch rule so that it wins for GH Action patches) "matchManagers": ["github-actions"], - "extends": ["schedule:weekly"], + "schedule": ["* 0-7 * * 2"], // weekly, before 8am on Tuesday "groupName": "github actions" },