mirror of
https://github.com/silverstripe/silverstripe-iframe
synced 2024-10-22 11:05:51 +02:00
Merge pull request #85 from creative-commoners/pulls/3/module-standardiser-1715811360
MNT Run module-standardiser
This commit is contained in:
commit
b6245f45e6
9
.github/workflows/dispatch-ci.yml
vendored
9
.github/workflows/dispatch-ci.yml
vendored
@ -1,9 +1,11 @@
|
||||
name: Dispatch CI
|
||||
|
||||
on:
|
||||
# At 11:20 AM UTC, only on Thursday and Friday
|
||||
# At 11:55 AM UTC, only on Monday and Tuesday
|
||||
schedule:
|
||||
- cron: '20 11 * * 4,5'
|
||||
- cron: '55 11 * * 1,2'
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
dispatch-ci:
|
||||
@ -11,6 +13,9 @@ jobs:
|
||||
# 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
|
||||
|
8
.github/workflows/keepalive.yml
vendored
8
.github/workflows/keepalive.yml
vendored
@ -1,17 +1,21 @@
|
||||
name: Keepalive
|
||||
|
||||
on:
|
||||
# At 9:45 AM UTC, on day 6 of the month
|
||||
# At 11:55 AM UTC, on day 16 of the month
|
||||
schedule:
|
||||
- cron: '45 9 6 * *'
|
||||
- cron: '55 11 16 * *'
|
||||
workflow_dispatch:
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
keepalive:
|
||||
name: Keepalive
|
||||
# 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:
|
||||
actions: write
|
||||
steps:
|
||||
- name: Keepalive
|
||||
uses: silverstripe/gha-keepalive@v1
|
||||
|
9
.github/workflows/merge-up.yml
vendored
9
.github/workflows/merge-up.yml
vendored
@ -1,17 +1,22 @@
|
||||
name: Merge-up
|
||||
|
||||
on:
|
||||
# At 11:20 AM UTC, only on Monday
|
||||
# At 11:55 AM UTC, only on Friday
|
||||
schedule:
|
||||
- cron: '20 11 * * 1'
|
||||
- cron: '55 11 * * 5'
|
||||
workflow_dispatch:
|
||||
|
||||
permissions: {}
|
||||
|
||||
jobs:
|
||||
merge-up:
|
||||
name: Merge-up
|
||||
# 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: write
|
||||
actions: write
|
||||
steps:
|
||||
- name: Merge-up
|
||||
uses: silverstripe/gha-merge-up@v1
|
||||
|
Loading…
Reference in New Issue
Block a user