From c167146f8cca23a88b597c5d8abc535666c5c684 Mon Sep 17 00:00:00 2001 From: CatBraaain <84499939+CatBraaain@users.noreply.github.com> Date: Thu, 13 Nov 2025 18:52:19 +0900 Subject: [PATCH] refactor: update deprecated renovate schedule syntax (#16717) Related issue: none This is a minor change; no issue is associated. Please let me know if one is required. ## Summary Update deprecated renovate schedule syntax ```diff - schedule: ["before 4am on Monday"], + schedule: ["* 0-3 * * 1"], ``` ## Rationale - Deprecated: Renovate plans to remove the @breejs/later library, so cron syntax is recommended. - Time range: at least 3-4 hours recommended for any schedule. References: - [Deprecated later syntax](https://docs.renovatebot.com/key-concepts/scheduling/#deprecated-breejslater-syntax) - [Schedule options](https://docs.renovatebot.com/configuration-options/#schedule) ## Test Plan - Cron syntax verified on [crontab.guru](https://crontab.guru/#*_0-3_*_*_1) - Behavior in Renovate not testable directly --- .github/renovate.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index ade585067..c10f82b38 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -8,7 +8,7 @@ "customManagers:githubActionsVersions", ], labels: ["internal"], - schedule: ["before 4am on Monday"], + schedule: ["* 0-3 * * 1"], semanticCommits: "disabled", separateMajorMinor: false, prHourlyLimit: 10,