@@ -230,7 +230,7 @@ workflows:
230230 jobs :
231231 build_compiler_containers :
232232 << : *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')"
234234 env :
235235 << : *build_compiler_containers_job_env
236236
@@ -246,7 +246,7 @@ workflows:
246246
247247 build_tool_containers :
248248 << : *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')"
250250 env :
251251 << : *build_tool_containers_job_env
252252
@@ -259,7 +259,7 @@ workflows:
259259 build_backend :
260260 name : " Build backend"
261261 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')"
263263
264264 steps :
265265 - *checkout_pr
@@ -302,7 +302,7 @@ workflows:
302302 build_frontend :
303303 name : " Build frontend"
304304 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')"
306306
307307 steps :
308308 - *checkout_pr
@@ -349,7 +349,7 @@ workflows:
349349 run_integration_tests :
350350 name : " Running integration tests"
351351 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')"
353353 needs :
354354 - build_compiler_containers
355355 - build_tool_containers
0 commit comments