silverstripe-environmentcheck/.github/workflows/dispatch-ci.yml
2024-05-17 15:06:54 +12:00

22 lines
514 B
YAML

name: Dispatch CI
on:
# At 5:25 AM UTC, only on Tuesday and Wednesday
schedule:
- cron: '25 5 * * 2,3'
permissions: {}
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
permissions:
contents: read
actions: write
steps:
- name: Dispatch CI
uses: silverstripe/gha-dispatch-ci@v1