From ed40a191df40e10fcd652c6d69c72b0d798114eb Mon Sep 17 00:00:00 2001 From: cytopia Date: Fri, 1 Apr 2022 02:26:28 +0200 Subject: [PATCH] Ensure GH actions trigger are described --- .github/workflows/action-schedule_master.yml | 3 ++- .github/workflows/action-schedule_tags.yml | 3 ++- .github/workflows/action.yml | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/action-schedule_master.yml b/.github/workflows/action-schedule_master.yml index b5c4883..6bbecdb 100644 --- a/.github/workflows/action-schedule_master.yml +++ b/.github/workflows/action-schedule_master.yml @@ -10,9 +10,10 @@ name: nightly # When to run # ------------------------------------------------------------------------------------------------- on: + # Nightly: At 00:00 on Sunday, Tuesday, and Thursday schedule: - # At 00:00 on Sunday, Tuesday, and Thursday - cron: '0 0 * * 0,2,4' + # Dispatch: allows for manual trigger via GH UI workflow_dispatch: diff --git a/.github/workflows/action-schedule_tags.yml b/.github/workflows/action-schedule_tags.yml index 20edae1..35fb082 100644 --- a/.github/workflows/action-schedule_tags.yml +++ b/.github/workflows/action-schedule_tags.yml @@ -10,9 +10,10 @@ name: nightly # When to run # ------------------------------------------------------------------------------------------------- on: + # Nightly: At 00:00 on Sunday, Tuesday, and Thursday schedule: - # At 00:00 on Sunday, Tuesday, and Thursday - cron: '0 0 * * 0,2,4' + # Dispatch: allows for manual trigger via GH UI workflow_dispatch: diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml index bb93883..2fef357 100644 --- a/.github/workflows/action.yml +++ b/.github/workflows/action.yml @@ -10,8 +10,10 @@ name: build # When to run # ------------------------------------------------------------------------------------------------- on: + # Push or pull_request will be determined in jobs.configure.enabled push: pull_request: + # Dispatch: allows for manual trigger via GH UI workflow_dispatch: