Skip to content

Commit

Permalink
MNT Run module-standardiser (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli authored May 30, 2024
1 parent 50e0b9a commit b80a696
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/dispatch-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Dispatch CI

on:
# At 1:05 PM UTC, only on Saturday and Sunday
schedule:
- cron: '5 13 * * 6,0'

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
4 changes: 2 additions & 2 deletions .github/workflows/merge-up.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Merge-up

on:
# At 1:05 AM UTC, only on Monday
# At 1:05 PM UTC, only on Wednesday
schedule:
- cron: '5 1 * * 1'
- cron: '5 13 * * 3'
workflow_dispatch:

permissions: {}
Expand Down

0 comments on commit b80a696

Please sign in to comment.