Skip to content

Commit 0d236e8

Browse files
committed
back true
1 parent e4e8a17 commit 0d236e8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Diff for: .github/workflows/check-btcli-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
find-e2e-tests:
2929
needs: check-labels
30-
if: needs.check-labels.outputs.run-cli-tests == true
30+
if: needs.check-labels.outputs.run-cli-tests == 'true'
3131
runs-on: ubuntu-latest
3232
outputs:
3333
test-files: ${{ steps.get-tests.outputs.test-files }}
@@ -53,7 +53,7 @@ jobs:
5353
pull-docker-image:
5454
needs: check-labels
5555
runs-on: ubuntu-latest
56-
if: needs.check-labels.outputs.run-cli-tests == true
56+
if: needs.check-labels.outputs.run-cli-tests == 'true'
5757
steps:
5858
- name: Log in to GitHub Container Registry
5959
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
@@ -76,7 +76,7 @@ jobs:
7676
- find-e2e-tests
7777
- pull-docker-image
7878

79-
if: needs.check-labels.outputs.run-cli-tests == true
79+
if: needs.check-labels.outputs.run-cli-tests == 'true'
8080
runs-on: ubuntu-latest
8181
strategy:
8282
fail-fast: false
@@ -178,7 +178,7 @@ jobs:
178178
run-unit-test:
179179
needs:
180180
- check-labels
181-
if: needs.check-labels.outputs.run-cli-tests == true
181+
if: needs.check-labels.outputs.run-cli-tests == 'true'
182182
runs-on: ubuntu-latest
183183
steps:
184184
- name: Check-out repository

Diff for: .github/workflows/check-sdk-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
find-e2e-tests:
2929
needs: check-labels
30-
if: always() && needs.check-labels.outputs.run-sdk-tests == true
30+
if: needs.check-labels.outputs.run-sdk-tests == 'true'
3131
runs-on: ubuntu-latest
3232
outputs:
3333
test-files: ${{ steps.get-tests.outputs.test-files }}
@@ -53,7 +53,7 @@ jobs:
5353
pull-docker-image:
5454
needs: check-labels
5555
runs-on: ubuntu-latest
56-
if: needs.check-labels.outputs.run-sdk-tests == true
56+
if: needs.check-labels.outputs.run-sdk-tests == 'true'
5757
steps:
5858
- name: Log in to GitHub Container Registry
5959
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $GITHUB_ACTOR --password-stdin
@@ -76,7 +76,7 @@ jobs:
7676
- find-e2e-tests
7777
- pull-docker-image
7878

79-
if: needs.check-labels.outputs.run-sdk-tests == true
79+
if: needs.check-labels.outputs.run-sdk-tests == 'true'
8080
runs-on: ubuntu-latest
8181
strategy:
8282
fail-fast: false
@@ -178,7 +178,7 @@ jobs:
178178
run-integration-and-unit-test:
179179
needs:
180180
- check-labels
181-
if: needs.check-labels.outputs.run-sdk-tests == true
181+
if: needs.check-labels.outputs.run-sdk-tests == 'true'
182182
runs-on: ubuntu-latest
183183
steps:
184184
- name: Check-out repository

0 commit comments

Comments
 (0)