From 6e83a1f86d5cf0cac8f0fbcee9882de0ea444d23 Mon Sep 17 00:00:00 2001 From: David Strome <21028455+dstrome@users.noreply.github.com> Date: Wed, 5 Nov 2025 16:06:10 -0800 Subject: [PATCH] Update AutoPublish workflow to adjust scheduled publish times for Standard Time (Nov-Mar) --- .github/workflows/AutoPublish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/AutoPublish.yml b/.github/workflows/AutoPublish.yml index c067d8f47b..aa79224fd8 100644 --- a/.github/workflows/AutoPublish.yml +++ b/.github/workflows/AutoPublish.yml @@ -7,7 +7,8 @@ permissions: on: schedule: - - cron: "25 2,5,8,11,14,17,20,22 * * *" # Times are UTC based on Daylight Saving Time. Need to be adjusted for Standard Time. Scheduling at :25 to account for queuing lag. + # - cron: "25 2,5,8,11,14,17,20,22 * * *" # Times are UTC based on Daylight Saving Time (~Mar-Nov). Scheduling at :25 to account for queuing lag. + - cron: "25 3,6,9,12,15,18,21,23 * * *" # Times are UTC based on Standard Time (~Nov-Mar). Scheduling at :25 to account for queuing lag. workflow_dispatch: