From 5fd91854b8b7c5af2190a6c0a89ddab34276e544 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Wed, 29 Jan 2025 08:40:50 -0300 Subject: [PATCH] ci: Update pytest durations workflow schedule to run weekly on Monday (#5992) ci: Update pytest durations workflow to run weekly on Monday --- .github/workflows/store_pytest_durations.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/store_pytest_durations.yml b/.github/workflows/store_pytest_durations.yml index 3d205e548..35119f3e2 100644 --- a/.github/workflows/store_pytest_durations.yml +++ b/.github/workflows/store_pytest_durations.yml @@ -3,8 +3,8 @@ name: Store pytest durations on: workflow_dispatch: schedule: - # Run job at 6:30 UTC, 10.30pm PST, or 11.30pm PDT - - cron: "30 6 * * *" + # Run job at 6:30 UTC every Monday (10.30pm PST/11.30pm PDT Sunday night) + - cron: "30 6 * * 1" env: PYTEST_RUN_PATH: "src/backend/tests"