[PM-29911] Update cron jobs to run at midnight on Sundays (#6280)

This commit is contained in:
Katherine Bertelsen 2025-12-18 08:50:32 -06:00 committed by GitHub
parent b79aca7338
commit c16da5090e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@ name: Cron / Sync Google Privileged Browsers List
on:
schedule:
# Run weekly on Monday at 00:00 UTC
- cron: "0 0 * * 1"
# Run weekly on Sunday at 00:00 UTC
- cron: '0 0 * * 0'
workflow_dispatch:
env:

View File

@ -4,7 +4,8 @@ run-name: Crowdin Pull - ${{ github.event_name == 'workflow_dispatch' && 'Manual
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 5"
# Run weekly on Sunday at 00:00 UTC
- cron: '0 0 * * 0'
permissions: {}