Fix shellcheck

This commit is contained in:
Daniel A. Wozniak 2025-02-03 15:01:11 -07:00 committed by Daniel Wozniak
parent 461e41fc11
commit df5997c400

View file

@ -35,13 +35,14 @@ jobs:
name: Set the ${{ github.event.workflow.name }} Pipeline Exit Status
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event.workflow_run.run_attempt >= 5 }}
runs-on: ubuntu-latest
shell: bash
needs:
- show-context
- on-failure
steps:
- run:
if [ "${{ github.event.workflow_run.conclusion }}" != "success" ]; then
exit 1
exit 1;
else
exit 0
exit 0;
fi