ci: Update pytest durations workflow schedule to run weekly on Monday (#5992)

ci: Update pytest durations workflow to run weekly on Monday
This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-01-29 08:40:50 -03:00 committed by GitHub
commit 5fd91854b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"