17 lines
387 B
YAML
Raw Normal View History

2022-07-05 19:08:18 +12:00
name: CI
on:
push:
pull_request:
workflow_dispatch:
# Every Saturday at 12:20pm UTC
schedule:
- cron: '20 12 * * 6'
jobs:
ci:
name: CI
# Only run cron on the silverstripe account
2022-08-01 10:47:45 +12:00
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
2022-07-05 19:08:18 +12:00
uses: silverstripe/gha-ci/.github/workflows/ci.yml@v1