We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0dc6fbf commit af16a6bCopy full SHA for af16a6b
.github/workflows/ci.yml
@@ -34,7 +34,10 @@ jobs:
34
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') }}
35
steps:
36
# Do anything just to make the job run
37
- - run: echo "Set CI Condition"
+ - run: echo "Debug CI Condition"
38
+ - run: echo "Labels -> ${{ join(github.event.pull_request.labels.*.name, ',') }}"
39
+ - run: echo "IsDraft -> ${{ github.event.pull_request.draft }}"
40
+ - run: echo "Event name -> ${{ github.event_name }}"
41
path-filter:
42
needs: set-ci-condition
43
if: ${{ needs.set-ci-condition.outputs.should-run-ci == 'true' }}
0 commit comments