diff --git a/.github/ci.yml b/.github/ci.yml index 29312c8..bf02210 100644 --- a/.github/ci.yml +++ b/.github/ci.yml @@ -4,13 +4,8 @@ on: push: pull_request: workflow_dispatch: - # Every Wednesday at 1:00pm UTC - schedule: - - cron: '0 13 * * 3' jobs: ci: name: CI - # Only run cron on the colymba account - if: (github.event_name == 'schedule' && github.repository_owner == 'colymba') || (github.event_name != 'schedule') uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1 diff --git a/.github/dispatch-ci.yml b/.github/dispatch-ci.yml new file mode 100644 index 0000000..daea467 --- /dev/null +++ b/.github/dispatch-ci.yml @@ -0,0 +1,16 @@ +name: Dispatch CI + +on: + # At 4:10 PM UTC, only on Sunday and Monday + schedule: + - cron: '10 16 * * 0,1' + +jobs: + dispatch-ci: + name: Dispatch CI + # Only run cron on the colymba account + if: (github.event_name == 'schedule' && github.repository_owner == 'colymba') || (github.event_name != 'schedule') + runs-on: ubuntu-latest + steps: + - name: Dispatch CI + uses: silverstripe/gha-dispatch-ci@v1