From 48fa91dcfb577f6d40cd4c69d1d3e7da1b53e93d Mon Sep 17 00:00:00 2001 From: "Aman Kumar [SSW]" <71385247+amankumarrr@users.noreply.github.com> Date: Fri, 29 Mar 2024 15:56:00 +1100 Subject: [PATCH] removing condition --- .github/workflows/daily-image-tests.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/daily-image-tests.yml b/.github/workflows/daily-image-tests.yml index 389dc06d0a..da59e5206e 100644 --- a/.github/workflows/daily-image-tests.yml +++ b/.github/workflows/daily-image-tests.yml @@ -59,12 +59,21 @@ jobs: needs: - check-broken-images - test-output - if: ${{ needs.test-output.outputs.create_issue == true && needs.check-broken-images.outputs.testPassed == 'false'}} + if: ${{ needs.check-broken-images.outputs.testPassed == 'false'}} steps: - name: Playwright Artifact run: | echo "Artifact Id: ${{ needs.check-broken-images.outputs.artifact-id }}" + - name: Create an Issue + if: ${{ needs.check-broken-images.outputs.testPassed == 'false'}} + uses: JasonEtco/create-an-issue@v2 + + - name: show the value + run: | + echo " value from the above :${{ needs.test-output.outputs.create_issue }}" + echo " condition :${{ needs.test-output.outputs.create_issue == true }}" + # - name: Create an Issue # uses: JasonEtco/create-an-issue@v2 # env: