Skip to content

Commit b173fd0

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

File tree

4 files changed

+19
-8
lines changed

4 files changed

+19
-8
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

+4-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@
4747
"silverstripe/frameworktest": "^1",
4848
"silverstripe/graphql-devtools": "1.x-dev",
4949
"silverstripe/recipe-testing": "^3",
50-
"mikey179/vfsstream": "^1.6"
50+
"mikey179/vfsstream": "^1.6",
51+
"silverstripe/standards": "^1",
52+
"phpstan/extension-installer": "^1.3"
5153
},
5254
"extra": {
5355
"project-files": [
@@ -68,4 +70,4 @@
6870
},
6971
"prefer-stable": true,
7072
"minimum-stability": "dev"
71-
}
73+
}

0 commit comments

Comments
 (0)