Skip to content

Commit

Permalink
Merge pull request #241 from creative-commoners/pulls/master/dispatch-ci
Browse files Browse the repository at this point in the history
MNT Use gha-dispatch-ci
  • Loading branch information
Maxime Rainville committed Mar 22, 2023
2 parents b3591a1 + 44af7e3 commit 3bafe3e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,8 @@ on:
push:
pull_request:
workflow_dispatch:
# Every Sunday at 1:00pm UTC
schedule:
- cron: '0 13 * * 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
16 changes: 16 additions & 0 deletions .github/workflows/dispatch-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Dispatch CI

on:
# At 1:00 PM UTC, only on Sunday and Monday
schedule:
- cron: '0 13 * * 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

0 comments on commit 3bafe3e

Please sign in to comment.