diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 21d68ad..bf02210 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,13 +4,8 @@ on: push: pull_request: workflow_dispatch: - # Every Sunday at 4:10pm UTC - schedule: - - cron: '10 16 * * 0' jobs: ci: name: CI - # Only run cron on the bringyourownideas account - if: (github.event_name == 'schedule' && github.repository_owner == 'bringyourownideas') || (github.event_name != 'schedule') uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1 diff --git a/.github/workflows/dispatch-ci.yml b/.github/workflows/dispatch-ci.yml new file mode 100644 index 0000000..fe92e5e --- /dev/null +++ b/.github/workflows/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 silverstripe account + if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule') + runs-on: ubuntu-latest + steps: + - name: Dispatch CI + uses: silverstripe/gha-dispatch-ci@v1 diff --git a/composer.json b/composer.json index e67095c..227056c 100644 --- a/composer.json +++ b/composer.json @@ -57,4 +57,4 @@ "issues": "https://github.com/bringyourownideas/silverstripe-composer-update-checker/issues" }, "homepage": "https://github.com/bringyourownideas/silverstripe-composer-update-checker" -} \ No newline at end of file +}