From d496ab827a843fe269486609541a35419c87f08b Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Thu, 25 Jul 2024 13:51:57 -0300 Subject: [PATCH] ci: add debug info (#2957) * ci: add debug info * fix: change echo commands --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dbdda64ea12b..525ac5258d44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,7 +34,10 @@ jobs: 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" + - run: echo "Debug CI Condition" + - run: echo "Labels -> ${{ join(github.event.pull_request.labels.*.name, ',') }}" + - run: echo "IsDraft -> ${{ github.event.pull_request.draft }}" + - run: echo "Event name -> ${{ github.event_name }}" path-filter: needs: set-ci-condition if: ${{ needs.set-ci-condition.outputs.should-run-ci == 'true' }}