Skip to content

Commit

Permalink
${{ }} around the entire expression
Browse files Browse the repository at this point in the history
Signed-off-by: Brian J. Murrell <brian.murrell@intel.com>
  • Loading branch information
brianjmurrell committed Sep 10, 2024
1 parent 1035f3d commit b47e227
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/rpm-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,11 @@ jobs:
runs-on: [self-hosted, light]
needs: [Import-commit-pragmas]
if: |
(needs.Import-commit-pragmas.outputs.run-gha == 'true' ||
inputs.RUN_GHA == 'true' ||
github.event_name == 'workflow_dispatch') &&
needs.Import-commit-pragmas.outputs.rpm-test-version == ''
${{ (needs.Import-commit-pragmas.outputs.run-gha == 'true' ||
inputs.RUN_GHA == 'true' ||
github.event_name == 'workflow_dispatch') &&
needs.Import-commit-pragmas.outputs.rpm-test-version == '' &&
!contains(needs.Import-commit-pragmas.outputs.pr-repos, '${{ inputs.NAME }}@') }}
env:
# TODO -- this should be on stable, backedup storage, not /scratch
# yamllint disable-line rule:line-length
Expand Down

0 comments on commit b47e227

Please sign in to comment.