From 61934ccb2e4096c9b0950a7f245bcd4de9102ed6 Mon Sep 17 00:00:00 2001 From: Mike Miller Date: Fri, 2 Aug 2024 08:31:07 +0300 Subject: [PATCH] Run the build on 'main' periodically to keep the caches alive --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ccd06a60c..563b51e9a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,6 +10,8 @@ on: # yamllint disable-line rule:truthy - "**" tags: - "v*" + schedule: + - cron: "34 19 * * sat" # Weekly, Saturday at 19:34 UTC env: UNITY_VERSION: "2022.3.34f1" @@ -17,6 +19,7 @@ env: jobs: configuration: if: | + (github.event_name == 'schedule') || (github.event_name == 'pull_request') || ( github.event_name == 'push' &&