Skip to content

Commit

Permalink
Handle skipped
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Mar 6, 2024
1 parent 4f29a8c commit d122c03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion maybe-fail/action.yml
Expand Up @@ -32,5 +32,5 @@ runs:
if: success() || failure()
run: echo "result=$outcome" | tee -a "$GITHUB_OUTPUT"
env:
outcome: ${{ steps.continue-on-error-false.outcome || steps.continue-on-error-true.outcome }}
outcome: ${{ steps.continue-on-error-false.outcome != 'skipped' && steps.continue-on-error-false.outcome || steps.continue-on-error-true.outcome }}
shell: bash

0 comments on commit d122c03

Please sign in to comment.