mirror of
https://github.com/silverstripe/silverstripe-iframe
synced 2024-10-22 11:05:51 +02:00
17 lines
387 B
YAML
17 lines
387 B
YAML
name: CI
|
|
|
|
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
|