From e03aa57eb0e107acedbe796e6f5fcee9cdf1fee3 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 8 Aug 2023 15:14:48 -0500 Subject: [PATCH] chore(gh): Expand update window I've been having some repos not updated lately. RenovateBot project's theory is that its because RenovateBot is scheduled to run once every 3 hours and checks the schedule at that point while the schedules I use only offers an exact 3 hour window, making this a race condition. The schedule originally came from RenovateBot but they changed their polling schedule. See https://github.com/renovatebot/renovate/discussions/23642#discussioncomment-6618560 --- .github/renovate.json5 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 137daa542cb..8ad9952d282 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -1,6 +1,6 @@ { schedule: [ - 'before 3am on the first day of the month', + 'before 5am on the first day of the month', ], semanticCommits: 'enabled', configMigration: true,