Skip to content

Commit b27e39a

Browse files
Merge branch '8.5' into 9.6
2 parents b2b7a8f + 285860a commit b27e39a

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# https://docs.github.com/en/actions
22

33
on:
4-
- pull_request
5-
- push
4+
pull_request: null
5+
push: null
6+
schedule:
7+
- cron: "15 0 * * *"
68

79
name: CI
810

@@ -39,6 +41,8 @@ jobs:
3941
coding-guidelines:
4042
name: Coding Guidelines
4143

44+
if: github.event_name != 'schedule'
45+
4246
runs-on: ubuntu-latest
4347

4448
steps:
@@ -59,6 +63,8 @@ jobs:
5963
type-checker:
6064
name: Type Checker
6165

66+
if: github.event_name != 'schedule'
67+
6268
needs:
6369
- dependency-validation
6470

@@ -188,6 +194,8 @@ jobs:
188194
code-coverage:
189195
name: Code Coverage
190196

197+
if: github.event_name != 'schedule'
198+
191199
needs:
192200
- end-to-end-tests
193201

@@ -220,6 +228,8 @@ jobs:
220228
build-phar:
221229
name: Build PHAR
222230

231+
if: github.event_name != 'schedule'
232+
223233
needs:
224234
- end-to-end-tests
225235

@@ -265,6 +275,8 @@ jobs:
265275
test-phar:
266276
name: Test PHAR
267277

278+
if: github.event_name != 'schedule'
279+
268280
needs:
269281
- build-phar
270282

0 commit comments

Comments
 (0)