mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix shellcheck
This commit is contained in:
parent
461e41fc11
commit
df5997c400
1 changed files with 3 additions and 2 deletions
5
.github/workflows/workflow-finished.yml
vendored
5
.github/workflows/workflow-finished.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue