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
commit 51b85dbc8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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