From b572b5baddec2ab95d6ca5de83393091038872c0 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Thu, 16 Mar 2023 10:35:51 +1300 Subject: [PATCH 1/2] DOC Remove reference to PDO --- docs/circleci-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/circleci-tutorial.md b/docs/circleci-tutorial.md index ad5b43d..63ba913 100644 --- a/docs/circleci-tutorial.md +++ b/docs/circleci-tutorial.md @@ -39,7 +39,7 @@ dependencies: cat << 'EOF' > _ss_environment.php Date: Tue, 21 Mar 2023 12:07:11 +1300 Subject: [PATCH 2/2] MNT Use gha-dispatch-ci --- .github/workflows/ci.yml | 5 ----- .github/workflows/dispatch-ci.yml | 16 ++++++++++++++++ 2 files changed, 16 insertions(+), 5 deletions(-) create mode 100644 .github/workflows/dispatch-ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4266717..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 2:10pm UTC - schedule: - - cron: '10 14 * * 0' jobs: ci: name: CI - # Only run cron on the silverstripe account - if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (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..3af7f06 --- /dev/null +++ b/.github/workflows/dispatch-ci.yml @@ -0,0 +1,16 @@ +name: Dispatch CI + +on: + # At 2:10 PM UTC, only on Sunday and Monday + schedule: + - cron: '10 14 * * 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