Skip to content

Commit 5a5c133

Browse files
authored
Merge pull request #17 from sgryt/debug-workflow
Switched to string-comparisons for boolean logic.
2 parents 04c1318 + be51e03 commit 5a5c133

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/paths-filtering-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
env:
4747
checkPassed: ${{ needs.in-scope.result == 'success' || needs.changes.outputs.inScope != 'true' }}
4848
steps:
49-
- if: ${{ env.checkPassed }}
49+
- if: ${{ env.checkPassed == 'true' }}
5050
run: exit 0
51-
- if: ${{ !env.checkPassed }}
51+
- if: ${{ env.checkPassed == 'false' }}
5252
run: exit 1

0 commit comments

Comments
 (0)