From 894cd379df36017fd35249490c922c0387bc1672 Mon Sep 17 00:00:00 2001 From: Derek Bruening Date: Fri, 19 Mar 2021 10:42:12 -0400 Subject: [PATCH] i#4111 web: Reduce docs cronbuilds to weekly (#4789) The daily docs cronbuilds are steadily increasing the size of the repo, due to timestamps in every single file changing every time. Given that we rarely make docs changes that we want to make live immediately, we reduce the cronbuild to coincide with the package build, and rely on manually-triggered docs builds for anything else. Issue: #4111 --- .github/workflows/ci-docs.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-docs.yml b/.github/workflows/ci-docs.yml index f525cc5051e..140c8d94964 100644 --- a/.github/workflows/ci-docs.yml +++ b/.github/workflows/ci-docs.yml @@ -32,9 +32,12 @@ name: ci-docs on: - # Built daily at 2am EST. + # Built weekly: 10pm EST Fridays. A re-build even with no content + # changes updates timestamps on every page, increasing the repo size. + # We thus use manual builds for rare docs changes we want to deploy to + # the website and have automated builds match our weekly package builds. schedule: - - cron: '0 7 * * *' + - cron: '0 3 * * FRI' # Manual trigger using the Actions page. workflow_dispatch: inputs: