Merge pull request #20153 from lsm5/fcos-podman-next-followup-3

[skip-ci] [CI:BUILD] FCOS+podman-next: correct GHA conditional syntax
This commit is contained in:
OpenShift Merge Robot
2023-09-26 10:40:50 -04:00
committed by GitHub

View File

@ -28,7 +28,7 @@ jobs:
- name: Set up wait-for-copr
# Do not run on scheduled nightly builds
if: ${{ github.event_name }} != 'schedule'
if: ${{ github.event_name != 'schedule' }}
run: |
pip3 install git+https://github.com/packit/wait-for-copr.git@main
@ -41,7 +41,7 @@ jobs:
- name: Wait for successful podman-next build with the latest commit
# Do not run on scheduled nightly builds
if: ${{ github.event_name }} != 'schedule'
if: ${{ github.event_name != 'schedule' }}
run: |
# TODO: add this in the Containerfile itself or as a --build-arg
wait-for-copr --owner ${{ env.COPR_OWNER }} --project ${{ env.COPR_PROJECT }} podman ${{ env.SHORT_SHA }}