fix: update path filter condition in ci.yml (#2947)

Update the path filter condition in ci.yml to use strict comparison for the 'should-run-ci' output value. This ensures that the CI job is only executed when the output value is 'true'.
This commit is contained in:
Gabriel Luiz Freitas Almeida
2024-07-25 09:45:30 -03:00
committed by GitHub
parent 44ffe8e6cd
commit 51b85dbc8e

View File

@ -37,7 +37,7 @@ jobs:
- run: echo "Set CI Condition"
path-filter:
needs: set-ci-condition
if: ${{ needs.set-ci-condition.outputs.should-run-ci }}
if: ${{ needs.set-ci-condition.outputs.should-run-ci == 'true' }}
name: Filter Paths
runs-on: ubuntu-latest