From 5d4c0fdb703d7d9cd1e36d9c4b62b9e5eed6bdaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Fri, 28 Feb 2025 23:47:18 +0100 Subject: [PATCH] ci(renovate): don't overlap schedules Branch creation schedule and automerge schedule should not overlap, or we'll get PRs that don't contain updates, which stop renovate from creating further PRs. --- .renovaterc.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.renovaterc.json b/.renovaterc.json index 83d8eaf..d15282c 100644 --- a/.renovaterc.json +++ b/.renovaterc.json @@ -35,10 +35,10 @@ "branchTopic": "lock-file-maintenance", "commitMessageAction": "Lock file maintenance", "schedule": [ - "* 23 * * *" + "* 22 * * *" ] }, "automergeSchedule": [ - "* 0-1 * * *" + "* 23 * * *" ] }