From 51b85dbc8edf8238897977bfe6c56cefefef65cd Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 25 Jul 2024 09:45:30 -0300 Subject: [PATCH] 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'. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e213d239..dbdda64ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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