From a3b44352f8796cc77157aa498678230eac4e9da5 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Tue, 9 Dec 2025 18:07:27 -0600 Subject: [PATCH] chore: Schedule documentation deployment on Sundays (#3942) Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- .github/workflows/docs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 08fce1c3f..e91088420 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -3,9 +3,9 @@ name: Deploy Documentation on: - # Runs on pushes targeting the default branch - push: - branches: ["main"] + schedule: + # Runs at 00:00 UTC every Sunday + - cron: '0 0 * * 0' # Allows you to run this workflow manually from the Actions tab workflow_dispatch: