Skip to content

Commit

Permalink
set if false explicitly
Browse files Browse the repository at this point in the history
Signed-off-by: Sarah Christoff <[email protected]>
  • Loading branch information
schristoff authored and troy0820 committed Feb 2, 2024
1 parent 7d83cd1 commit 9df0812
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_pipelinesrelease_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
Validate-unit_test:
name: Unit Test
runs-on: ubuntu-latest
if: ! ${{inputs.skipTests}}
if: ${{inputs.skipTests == false}}
steps:
- name: checkout
uses: actions/[email protected]
Expand Down Expand Up @@ -123,7 +123,8 @@ jobs:
name: Run smoke tests on
needs:
- Validate-xbuild
if: success() && ! ${{inputs.skipTests}}
runs-on:
if: success() && ${{inputs.skipTests == false}}
steps:
- name: checkout
uses: actions/[email protected]
Expand Down

0 comments on commit 9df0812

Please sign in to comment.