From c16da5090ef08d2de4e4e694f3f46aa304bb361a Mon Sep 17 00:00:00 2001 From: Katherine Bertelsen Date: Thu, 18 Dec 2025 08:50:32 -0600 Subject: [PATCH] [PM-29911] Update cron jobs to run at midnight on Sundays (#6280) --- .github/workflows/cron-sync-google-priviledged-browsers.yml | 4 ++-- .github/workflows/crowdin-pull.yml | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cron-sync-google-priviledged-browsers.yml b/.github/workflows/cron-sync-google-priviledged-browsers.yml index 8928e50fca..a75d98bb61 100644 --- a/.github/workflows/cron-sync-google-priviledged-browsers.yml +++ b/.github/workflows/cron-sync-google-priviledged-browsers.yml @@ -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: diff --git a/.github/workflows/crowdin-pull.yml b/.github/workflows/crowdin-pull.yml index b650d7d1ee..f072acaec3 100644 --- a/.github/workflows/crowdin-pull.yml +++ b/.github/workflows/crowdin-pull.yml @@ -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: {}