From 4e875e059e5fba91a02d4ee8708d8fe66ec7176d Mon Sep 17 00:00:00 2001 From: Matus Kasak Date: Fri, 14 Aug 2026 14:31:44 +0200 Subject: [PATCH] ci(trigger-ui-tests): shift nightly cron to 02:15 UTC GitHub Actions cron runs in UTC. '0 5 * * *' fired at 05:00 UTC, which is 07:00 local in summer (CEST/UTC+2) and 06:00 in winter (CET/UTC+1) - right when the team arrives and needs the self-hosted runner. Moving to '15 2 * * *' (02:15 UTC) means ~04:15 local (summer) / ~03:15 local (winter), finishing well before the workday even with GitHub's scheduler queue delay and the ~60 min suite. Using :15 instead of :00 avoids top-of-the-hour scheduler congestion that was delaying the run by 20-30 minutes. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/trigger-ui-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/trigger-ui-tests.yml b/.github/workflows/trigger-ui-tests.yml index c7a28e1e139..a198ebb3b30 100644 --- a/.github/workflows/trigger-ui-tests.yml +++ b/.github/workflows/trigger-ui-tests.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: workflow_call: schedule: - - cron: '0 5 * * *' + - cron: '15 2 * * *' permissions: actions: write # Grants permission to trigger workflows