File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
# https://docs.github.com/en/actions
2
2
3
3
on :
4
- - pull_request
5
- - push
4
+ pull_request : null
5
+ push : null
6
+ schedule :
7
+ - cron : " 15 0 * * *"
6
8
7
9
name : CI
8
10
39
41
coding-guidelines :
40
42
name : Coding Guidelines
41
43
44
+ if : github.event_name != 'schedule'
45
+
42
46
runs-on : ubuntu-latest
43
47
44
48
steps :
59
63
type-checker :
60
64
name : Type Checker
61
65
66
+ if : github.event_name != 'schedule'
67
+
62
68
needs :
63
69
- dependency-validation
64
70
@@ -188,6 +194,8 @@ jobs:
188
194
code-coverage :
189
195
name : Code Coverage
190
196
197
+ if : github.event_name != 'schedule'
198
+
191
199
needs :
192
200
- end-to-end-tests
193
201
@@ -220,6 +228,8 @@ jobs:
220
228
build-phar :
221
229
name : Build PHAR
222
230
231
+ if : github.event_name != 'schedule'
232
+
223
233
needs :
224
234
- end-to-end-tests
225
235
@@ -265,6 +275,8 @@ jobs:
265
275
test-phar :
266
276
name : Test PHAR
267
277
278
+ if : github.event_name != 'schedule'
279
+
268
280
needs :
269
281
- build-phar
270
282
You can’t perform that action at this time.
0 commit comments