Skip to content

Commit

Permalink
ci: update path-filter job condition in ci.yml (#2817)
Browse files Browse the repository at this point in the history
refactor: update path-filter job condition in ci.yml
  • Loading branch information
ogabrielluiz committed Jul 19, 2024
1 parent 8b37069 commit f701d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ concurrency:

jobs:
path-filter:
if: ${{ (contains( github.event.pull_request.labels.*.name, 'lgtm') && github.event.pull_request.draft == false) || github.event_name == 'workflow_dispatch' }}
if: ${{ (contains( github.event.pull_request.labels.*.name, 'lgtm') && github.event.pull_request.draft == false) || (github.event_name == 'workflow_dispatch' || github.event_name == 'workflow_call') }}

name: Filter Paths
runs-on: ubuntu-latest
Expand Down

0 comments on commit f701d86

Please sign in to comment.