From 7f41bd7d5ddb5da3cceb311385c022df7cdde7ee Mon Sep 17 00:00:00 2001 From: Sean T Allen Date: Wed, 9 Aug 2023 16:51:31 -0400 Subject: [PATCH] Run "rebuild libs cache" every day 3 hours before nightlies run (#4386) Usually this will quickly exit, however, if anything is out of date 3 hours before nightlies, it will probably be out of date at the time that nightlies happen. Running ahead of time will make the release more efficient. That efficiency is nice because if we hit a problem elsewhere with the release, it will happen "sooner in the evening" with more time for someone to look into it. --- .github/workflows/update-lib-cache.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-lib-cache.yml b/.github/workflows/update-lib-cache.yml index 0bd8872b95..844fcad219 100644 --- a/.github/workflows/update-lib-cache.yml +++ b/.github/workflows/update-lib-cache.yml @@ -1,7 +1,9 @@ -name: Manually update lib cache +name: Update lib cache on: - workflow_dispatch + workflow_dispatch: + schedule: + - cron: "0 21 * * *" concurrency: group: "update-lib-cache"