mirror of
https://github.com/silverstripe/recipe-plugin.git
synced 2024-10-22 14:05:55 +02:00
Merge pull request #40 from creative-commoners/pulls/2/module-standardiser-1715811536
MNT Run module-standardiser
This commit is contained in:
commit
a0f246faa7
9
.github/workflows/dispatch-ci.yml
vendored
9
.github/workflows/dispatch-ci.yml
vendored
@ -1,9 +1,11 @@
|
|||||||
name: Dispatch CI
|
name: Dispatch CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# At 12:00 PM UTC, only on Friday and Saturday
|
# At 11:55 PM UTC, only on Friday and Saturday
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 12 * * 5,6'
|
- cron: '55 23 * * 5,6'
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
dispatch-ci:
|
dispatch-ci:
|
||||||
@ -11,6 +13,9 @@ jobs:
|
|||||||
# Only run cron on the silverstripe account
|
# Only run cron on the silverstripe account
|
||||||
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
actions: write
|
||||||
steps:
|
steps:
|
||||||
- name: Dispatch CI
|
- name: Dispatch CI
|
||||||
uses: silverstripe/gha-dispatch-ci@v1
|
uses: silverstripe/gha-dispatch-ci@v1
|
||||||
|
8
.github/workflows/keepalive.yml
vendored
8
.github/workflows/keepalive.yml
vendored
@ -1,17 +1,21 @@
|
|||||||
name: Keepalive
|
name: Keepalive
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# At 7:35 PM UTC, on day 24 of the month
|
# At 11:55 PM UTC, on day 20 of the month
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '35 19 24 * *'
|
- cron: '55 23 20 * *'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
keepalive:
|
keepalive:
|
||||||
name: Keepalive
|
name: Keepalive
|
||||||
# Only run cron on the silverstripe account
|
# Only run cron on the silverstripe account
|
||||||
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
actions: write
|
||||||
steps:
|
steps:
|
||||||
- name: Keepalive
|
- name: Keepalive
|
||||||
uses: silverstripe/gha-keepalive@v1
|
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
|
name: Merge-up
|
||||||
|
|
||||||
on:
|
on:
|
||||||
# At 12:00 PM UTC, only on Tuesday
|
# At 11:55 PM UTC, only on Tuesday
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 12 * * 2'
|
- cron: '55 23 * * 2'
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
|
permissions: {}
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
merge-up:
|
merge-up:
|
||||||
name: Merge-up
|
name: Merge-up
|
||||||
# Only run cron on the silverstripe account
|
# Only run cron on the silverstripe account
|
||||||
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
actions: write
|
||||||
steps:
|
steps:
|
||||||
- name: Merge-up
|
- name: Merge-up
|
||||||
uses: silverstripe/gha-merge-up@v1
|
uses: silverstripe/gha-merge-up@v1
|
||||||
|
Loading…
Reference in New Issue
Block a user