ci: refactor CI workflow conditions to run only when PR is approved (#2805)
* refactor: add check-reviews job to ci.yml * refactor(ci.yml): update path-filter condition to depend on the output of check-reviews job for improved readability and maintainability * chore(ci.yml): remove check-reviews job and update path-filter condition to check for 'lgtm' label before running the job
This commit is contained in:
parent
6ee14a502c
commit
6ffe579c7d
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -27,8 +27,8 @@ concurrency:
|
|||
|
||||
jobs:
|
||||
path-filter:
|
||||
# should run if the PR is approved,or if it's a manual run or if it is not a draft PR
|
||||
if: ${{ (github.event.review.state == 'APPROVED' && 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' }}
|
||||
|
||||
name: Filter Paths
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue