From b673dbb0c90017972a0cd27ec31be62fa8309dfe Mon Sep 17 00:00:00 2001 From: Patrick de Ruiter Date: Sat, 29 Nov 2025 12:12:15 +0100 Subject: [PATCH] fix: Use cron syntax for schedule per Renovate docs --- files/config.js.tpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/config.js.tpl b/files/config.js.tpl index fc12edf..1334398 100644 --- a/files/config.js.tpl +++ b/files/config.js.tpl @@ -27,7 +27,8 @@ module.exports = { // Schedule configuration - only run during specified time window // This reduces resource usage by limiting when Renovate checks for updates - schedule: ['after 2am and before 4am'], + // Cron format: minute hour day-of-month month day-of-week + schedule: ['* 2-3 * * *'], // 2:00 AM to 3:59 AM timezone: 'Europe/Amsterdam', // Regex managers for custom version detection