Compare commits

...

8 Commits
2.8.6 ... 2

Author SHA1 Message Date
github-actions dcc39392cb Merge branch '2.8' into 2 2024-02-07 11:31:02 +00:00
github-actions 23b9db798d Merge branch '2.8' into 2 2023-11-08 11:30:53 +00:00
github-actions 40ee7c76db Merge branch '2.8' into 2 2023-08-23 11:31:18 +00:00
github-actions 3ec16bbe56 Merge branch '2.8' into 2 2023-08-16 11:31:00 +00:00
Steve Boyd d1d1b139d0 Merge branch '2.8' into 2 2023-06-16 12:10:37 +12:00
Steve Boyd 86205a6286 Merge branch '2.8' into 2 2023-03-29 09:59:23 +13:00
Maxime Rainville 701c6cd053
Merge pull request #517 from creative-commoners/pulls/2/dispatch-ci
MNT Use gha-dispatch-ci
2023-03-23 14:19:26 +13:00
Steve Boyd 4006884aa7 MNT Use gha-dispatch-ci 2023-03-21 13:41:59 +13:00
2 changed files with 16 additions and 5 deletions

View File

@ -4,13 +4,8 @@ on:
push:
pull_request:
workflow_dispatch:
# Every Saturday at 11:30am UTC
schedule:
- cron: '30 11 * * 6'
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:30 AM UTC, only on Saturday and Sunday
schedule:
- cron: '30 11 * * 6,0'
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