Compare commits

...

6 Commits
2.4.3 ... 2

Author SHA1 Message Date
github-actions 5dd339b0ab Merge branch '2.4' into 2 2024-02-12 11:23:39 +00:00
github-actions 73d93eb63f Merge branch '2.4' into 2 2023-08-21 11:23:59 +00:00
Steve Boyd ab3d5360c5 Merge branch '2.4' into 2 2023-06-16 12:02:31 +12:00
Guy Sartorelli 5aa7dde8d8
Merge branch '2.4' into 2 2023-04-26 12:45:32 +12:00
Maxime Rainville 82fc9ceb7c
Merge pull request #68 from creative-commoners/pulls/2/dispatch-ci
MNT Use gha-dispatch-ci
2023-03-23 14:15:27 +13:00
Steve Boyd 98fc4f3b3e MNT Use gha-dispatch-ci 2023-03-21 12:26:04 +13:00
2 changed files with 16 additions and 5 deletions

View File

@ -4,13 +4,8 @@ on:
push:
pull_request:
workflow_dispatch:
# Every Thursday at 11:20am UTC
schedule:
- cron: '20 11 * * 4'
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

16
.github/workflows/dispatch-ci.yml vendored Normal file
View File

@ -0,0 +1,16 @@
name: Dispatch CI
on:
# At 11:20 AM UTC, only on Thursday and Friday
schedule:
- cron: '20 11 * * 4,5'
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