Skip to content

Commit 623cb06

Browse files
committed
set if false explicitly
Signed-off-by: Sarah Christoff <28318173+schristoff@users.noreply.github.com>
1 parent 9baebc1 commit 623cb06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_azure_pipelinesrelease_template.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
Validate-unit_test:
7979
name: Unit Test
8080
runs-on: ubuntu-latest
81-
if: ! ${{inputs.skipTests}}
81+
if: ${{inputs.skipTests == false}}
8282
steps:
8383
- name: checkout
8484
uses: actions/checkout@v4.1.0
@@ -125,7 +125,7 @@ jobs:
125125
- Validate-xbuild
126126
runs-on:
127127
- self-hosted
128-
if: success() && ! ${{inputs.skipTests}}
128+
if: success() && ${{inputs.skipTests == false}}
129129
steps:
130130
- name: checkout
131131
uses: actions/checkout@v4.1.0

0 commit comments

Comments
 (0)