Skip to content

Commit 319c176

Browse files
committed
MNT Run module-standardiser
1 parent 96232c0 commit 319c176

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

.github/workflows/dispatch-ci.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
name: Dispatch CI
22

33
on:
4-
# At 3:00 PM and 4:00 PM
4+
# At 8:40 PM UTC, only on Sunday and Monday
55
schedule:
6-
- cron: '0 15,16 * * *'
6+
- cron: '40 20 * * 0,1'
7+
8+
permissions: {}
79

810
jobs:
911
dispatch-ci:
1012
name: Dispatch CI
1113
# Only run cron on the silverstripe account
1214
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
1315
runs-on: ubuntu-latest
16+
permissions:
17+
contents: read
18+
actions: write
1419
steps:
1520
- name: Dispatch CI
1621
uses: silverstripe/gha-dispatch-ci@v1

.github/workflows/keepalive.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
name: Keepalive
22

33
on:
4-
workflow_dispatch:
5-
# The 1st of every month at 3:50pm UTC
4+
# At 8:40 PM UTC, on day 1 of the month
65
schedule:
7-
- cron: '50 15 1 * *'
6+
- cron: '40 20 1 * *'
7+
workflow_dispatch:
8+
9+
permissions: {}
810

911
jobs:
1012
keepalive:
1113
name: Keepalive
1214
# Only run cron on the silverstripe account
1315
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
1416
runs-on: ubuntu-latest
17+
permissions:
18+
actions: write
1519
steps:
1620
- name: Keepalive
1721
uses: silverstripe/gha-keepalive@v1

LICENSE.md LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2018, SilverStripe Ltd.
3+
Copyright (c) 2018, Silverstripe Ltd.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,4 @@
6868
},
6969
"prefer-stable": true,
7070
"minimum-stability": "dev"
71-
}
71+
}

0 commit comments

Comments
 (0)