From a63c501f177e09da7874f23531c98e09501a388a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Fri, 28 Aug 2026 10:24:47 +0200 Subject: [PATCH] tools: offset GitHub crons by 3 minutes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It might increase the chance of them being scheduled. Refs: https://github.com/nodejs/build/issues/4443 Refs: https://docs.github.com/en/actions/reference/workflows-and-actions/events-that-trigger-workflows#schedule Signed-Off-By: Michaƫl Zasso --- .github/workflows/auto-start-ci.yml | 2 +- .github/workflows/commit-queue.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml index 0a69ff636f25..271bcfc13fa8 100644 --- a/.github/workflows/auto-start-ci.yml +++ b/.github/workflows/auto-start-ci.yml @@ -9,7 +9,7 @@ on: # optimistic, it can take longer to run. # To understand why `schedule` is used instead of other events, refer to # ./doc/contributing/commit-queue.md - - cron: '*/5 * * * *' + - cron: 3/5 * * * * concurrency: ${{ github.workflow }} diff --git a/.github/workflows/commit-queue.yml b/.github/workflows/commit-queue.yml index c44ccc48d2fd..4deb0d72b133 100644 --- a/.github/workflows/commit-queue.yml +++ b/.github/workflows/commit-queue.yml @@ -11,7 +11,7 @@ on: # be read-only, and the Action won't have access to any other repository # secrets, which it needs to access Jenkins API. schedule: - - cron: '*/5 * * * *' + - cron: 3/5 * * * * concurrency: ${{ github.workflow }}