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
@@ -183,6 +189,8 @@ jobs:
183
189
code-coverage :
184
190
name : Code Coverage
185
191
192
+ if : github.event_name != 'schedule'
193
+
186
194
needs :
187
195
- end-to-end-tests
188
196
@@ -215,6 +223,8 @@ jobs:
215
223
build-phar :
216
224
name : Build PHAR
217
225
226
+ if : github.event_name != 'schedule'
227
+
218
228
needs :
219
229
- end-to-end-tests
220
230
@@ -260,6 +270,8 @@ jobs:
260
270
test-phar :
261
271
name : Test PHAR
262
272
273
+ if : github.event_name != 'schedule'
274
+
263
275
needs :
264
276
- build-phar
265
277
You can’t perform that action at this time.
0 commit comments