Skip to content

Commit

Permalink
removing condition
Browse files Browse the repository at this point in the history
  • Loading branch information
amankumarrr committed Mar 29, 2024
1 parent 8be26b9 commit 48fa91d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/daily-image-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 48fa91d

Please sign in to comment.