diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 256df594fd..4e213d2390 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,9 @@ jobs: runs-on: ubuntu-latest outputs: should-run-ci: ${{ (contains( github.event.pull_request.labels.*.name, 'lgtm') && github.event.pull_request.draft == false) || (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') }} + steps: + # Do anything just to make the job run + - run: echo "Set CI Condition" path-filter: needs: set-ci-condition if: ${{ needs.set-ci-condition.outputs.should-run-ci }}