File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -412,10 +412,15 @@ jobs:
412
412
openshift-certification :
413
413
name : OpenShift Certification
414
414
needs : [build-oss, build-plus, build-operator]
415
- if : ${{ inputs.dry_run || false }}
415
+ if : >
416
+ ${{ github.event_name == 'pull_request'
417
+ && github.event.pull_request.base.ref == 'main'
418
+ || (github.event_name == 'push' && github.ref == 'refs/heads/main')
419
+ || (inputs.is_production_release == true)
420
+ }}
416
421
uses : ./.github/workflows/openshift-certification.yml
417
422
with :
418
- runner : ${{ github.repository_owner == 'nginx' && (inputs.is_production_release || (github.event_name == 'push' && github.ref == 'refs/heads/main')) && ' ubuntu-24.04-amd64' || 'ubuntu-24.04' }}
423
+ runner : ubuntu-24.04
419
424
permissions :
420
425
contents : read
421
426
packages : read
You can’t perform that action at this time.
0 commit comments