From 2cbc7e8d3e0c9154b478ed3cac2c6d5333a9fcec Mon Sep 17 00:00:00 2001 From: Nicolas Schweitzer Date: Fri, 24 Apr 2026 14:36:34 +0200 Subject: [PATCH] chore(renovate): restrict auto-runs to non-office hours MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds the `schedule:nonOfficeHours` preset to `extends`, which evaluates to: ["after 10pm every weekday", "before 5am every weekday", "every weekend"] Renovate (Mend-hosted) currently scans at unpredictable times throughout the day, which makes the dashboard-queued rerun button unusable when the platform is backlogged. Constraining auto-runs to nights and weekends leaves the queue free during the workday for on-demand triggers and reduces mid-workday PR noise. Package-level schedules (linux-images, windows-images, integrations-core, etc.) are unaffected — they already define their own quiet windows and remain the authoritative filter for their respective deps. --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index a4433381559d..efe4578777fb 100644 --- a/renovate.json +++ b/renovate.json @@ -1,6 +1,6 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended", ":enablePreCommit"], + "extends": ["config:recommended", ":enablePreCommit", "schedule:nonOfficeHours"], "constraints": { "go": "1.25.9" },