From 919e8d085f5dc6a6d84b9af05b76437bf58058ee Mon Sep 17 00:00:00 2001 From: bjornoleh <63544115+bjornoleh@users.noreply.github.com> Date: Mon, 27 Feb 2023 21:52:11 +0100 Subject: [PATCH] build_loop workflow: add commented template for build on push and on schedule Includes comments with instructions for un-commenting to enable builds on push and automated builds every two months on: #push: #schedule: #- cron: '0 17 1 */2 *' # Runs at 17:00 UTC on the 1st in Jan, Mar, May, Jul, Sep and Nov. --- .github/workflows/build_loop.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build_loop.yml b/.github/workflows/build_loop.yml index 1094350dac..26ee8c1ed1 100644 --- a/.github/workflows/build_loop.yml +++ b/.github/workflows/build_loop.yml @@ -2,6 +2,13 @@ name: 4. Build Loop run-name: Build Loop on: workflow_dispatch: + + ## Remove the "#" sign from the beginning of the line below to get automated builds on push (code changes in your repository) + #push: + + ## Remove the "#" sign from the beginning of the two lines below to get automated builds every two months + #schedule: + #- cron: '0 17 1 */2 *' # Runs at 17:00 UTC on the 1st in Jan, Mar, May, Jul, Sep and Nov. jobs: secrets: