From ed24d7820a2f5ca2b3a794a2e00f51c7b104cd1c Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Tue, 19 May 2026 10:09:52 +0200 Subject: [PATCH] ci: Run scheduled e2e tests on weekdays at 01:00 UTC Avoids weekend runs when nobody is around to react to failures and shifts the trigger earlier so results are ready before the workday starts in Europe. --- .github/workflows/on_schedule_tests.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/on_schedule_tests.yaml b/.github/workflows/on_schedule_tests.yaml index 940ad2ecba..e16333b28b 100644 --- a/.github/workflows/on_schedule_tests.yaml +++ b/.github/workflows/on_schedule_tests.yaml @@ -4,9 +4,9 @@ on: # Runs when manually triggered from the GitHub UI. workflow_dispatch: - # Runs on a daily schedule at 06:00 UTC. + # Runs on weekdays at 01:00 UTC. schedule: - - cron: '0 6 * * *' + - cron: '0 1 * * 1-5' concurrency: group: scheduled-tests @@ -71,7 +71,7 @@ jobs: APIFY_TEST_USER_API_TOKEN: ${{ secrets.APIFY_TEST_USER_API_TOKEN }} OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} - # Send a Slack notification to #tooling-team-python when scheduled e2e tests fail. + # Send a Slack notification to the team alerting channel when scheduled e2e tests fail. # Skipped on workflow_dispatch (manual runs) so that ad-hoc triggers don't spam the channel. notify_on_failure: name: Notify Slack on failure