@@ -230,7 +230,7 @@ workflows:
230
230
jobs :
231
231
build_compiler_containers :
232
232
<< : *build_compiler_containers_job
233
- if : " contains(github.event.pull_request.labels.*.name, 'CI: approved')"
233
+ if : " github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI: approved')"
234
234
env :
235
235
<< : *build_compiler_containers_job_env
236
236
@@ -246,7 +246,7 @@ workflows:
246
246
247
247
build_tool_containers :
248
248
<< : *build_tool_containers_job
249
- if : " contains(github.event.pull_request.labels.*.name, 'CI: approved')"
249
+ if : " github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI: approved')"
250
250
env :
251
251
<< : *build_tool_containers_job_env
252
252
@@ -259,7 +259,7 @@ workflows:
259
259
build_backend :
260
260
name : " Build backend"
261
261
runs-on : ubuntu-latest
262
- if : " contains(github.event.pull_request.labels.*.name, 'CI: approved')"
262
+ if : " github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI: approved')"
263
263
264
264
steps :
265
265
- *checkout_pr
@@ -302,7 +302,7 @@ workflows:
302
302
build_frontend :
303
303
name : " Build frontend"
304
304
runs-on : ubuntu-latest
305
- if : " contains(github.event.pull_request.labels.*.name, 'CI: approved')"
305
+ if : " github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI: approved')"
306
306
307
307
steps :
308
308
- *checkout_pr
@@ -349,7 +349,7 @@ workflows:
349
349
run_integration_tests :
350
350
name : " Running integration tests"
351
351
runs-on : ubuntu-latest
352
- if : " contains(github.event.pull_request.labels.*.name, 'CI: approved')"
352
+ if : " github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'CI: approved')"
353
353
needs :
354
354
- build_compiler_containers
355
355
- build_tool_containers
0 commit comments