Compare commits

...

14 Commits
4.13.13 ... 4

Author SHA1 Message Date
github-actions 6bc1171323 Merge branch '4.13' into 4 2024-02-10 13:24:58 +00:00
Guy Sartorelli 9fbb2f3b02
Merge branch '4.13' into 4 2024-01-25 14:18:12 +13:00
github-actions 089151b835 Merge branch '4.13' into 4 2023-11-25 13:24:04 +00:00
github-actions fe3ddfef27 Merge branch '4.13' into 4 2023-11-11 13:24:04 +00:00
github-actions 992e2dfb8e Merge branch '4.13' into 4 2023-09-23 13:23:30 +00:00
Guy Sartorelli 3b1b38bc06
Merge branch '4.13' into 4 2023-09-18 10:54:11 +12:00
github-actions 40a91496e3 Merge branch '4.13' into 4 2023-09-02 13:23:26 +00:00
github-actions ffebe5d96e Merge branch '4.13' into 4 2023-08-26 13:23:31 +00:00
github-actions 01d389ec44 Merge branch '4.13' into 4 2023-08-19 13:23:54 +00:00
Steve Boyd 97861d4e02 Merge branch '4.13' into 4 2023-06-16 11:39:43 +12:00
Steve Boyd 12cf9159c8 Merge branch '4.13' into 4 2023-05-31 14:38:55 +12:00
Guy Sartorelli 8317309864
Merge branch '4.13' into 4 2023-04-26 12:44:39 +12:00
Maxime Rainville 2b185d7ef7
Merge pull request #2843 from creative-commoners/pulls/4/dispatch-ci
MNT Use gha-dispatch-ci
2023-03-23 12:16:47 +13:00
Steve Boyd 887dfad3e4 MNT Use gha-dispatch-ci 2023-03-21 12:21:31 +13:00
2 changed files with 16 additions and 5 deletions

View File

@ -4,13 +4,8 @@ on:
push:
pull_request:
workflow_dispatch:
# Every Tuesday at 1:20pm UTC
schedule:
- cron: '20 13 * * 2'
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 1:20 PM UTC, only on Tuesday and Wednesday
schedule:
- cron: '20 13 * * 2,3'
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