Skip to content

Commit

Permalink
cause test not to fail instead of ignoring error
Browse files Browse the repository at this point in the history
  • Loading branch information
CodingDepot committed Jul 17, 2024
1 parent 245b630 commit 10e28e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/upgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:
merge-multiple: true
- name: Process failures
id: process-failures
run: test -f all-failures/failure && echo 'hasFails=true' >> "$GITHUB_OUTPUT"
continue-on-error: true
run: test -f all-failures/failure && echo 'hasFails=true' >> "$GITHUB_OUTPUT"
|| echo 'hasFails=false' >> "$GITHUB_OUTPUT"
- if: ${{ steps.process-failures.outputs.hasFails == 'true' }}
uses: actions/github-script@v7
with:
Expand Down

0 comments on commit 10e28e3

Please sign in to comment.