Skip to content

Commit

Permalink
Merge pull request #20153 from lsm5/fcos-podman-next-followup-3
Browse files Browse the repository at this point in the history
[skip-ci] [CI:BUILD] FCOS+podman-next: correct GHA conditional syntax
  • Loading branch information
openshift-merge-robot authored Sep 26, 2023
2 parents d2d121a + 59ffea8 commit a5c7b0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/fcos-podman-next-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand Down

0 comments on commit a5c7b0e

Please sign in to comment.