144 lines
3.3 KiB
YAML
144 lines
3.3 KiB
YAML
pull_request_rules:
|
|
- name: label-documentation
|
|
description: Automatically apply documentation label
|
|
conditions:
|
|
- or:
|
|
- files~=^[^/]+\.md$
|
|
- files~=^docs/
|
|
- files~=^examples/
|
|
actions:
|
|
label:
|
|
add:
|
|
- documentation
|
|
|
|
- name: label-ci-build
|
|
description: Automatically apply ci/build label
|
|
conditions:
|
|
- or:
|
|
- files~=^\.github/
|
|
- files~=\.buildkite/
|
|
- files~=^cmake/
|
|
- files=CMakeLists.txt
|
|
- files~=^docker/Dockerfile
|
|
- files~=^requirements.*\.txt
|
|
- files=setup.py
|
|
actions:
|
|
label:
|
|
add:
|
|
- ci/build
|
|
|
|
- name: label-frontend
|
|
description: Automatically apply frontend label
|
|
conditions:
|
|
- files~=^vllm/entrypoints/
|
|
actions:
|
|
label:
|
|
add:
|
|
- frontend
|
|
|
|
- name: label-multi-modality
|
|
description: Automatically apply multi-modality label
|
|
conditions:
|
|
- or:
|
|
- files~=^vllm/multimodal/
|
|
- files~=^tests/multimodal/
|
|
- files~=^tests/models/multimodal/
|
|
- files~=^tests/models/*/audio_language/
|
|
- files~=^tests/models/*/vision_language/
|
|
- files=tests/models/test_vision.py
|
|
actions:
|
|
label:
|
|
add:
|
|
- multi-modality
|
|
|
|
- name: label-structured-output
|
|
description: Automatically apply structured-output label
|
|
conditions:
|
|
- or:
|
|
- files~=^vllm/model_executor/guided_decoding/
|
|
- files=tests/model_executor/test_guided_processors.py
|
|
- files=tests/entrypoints/llm/test_guided_generate.py
|
|
- files=benchmarks/benchmark_serving_guided.py
|
|
- files=benchmarks/benchmark_guided.py
|
|
actions:
|
|
label:
|
|
add:
|
|
- structured-output
|
|
|
|
- name: label-speculative-decoding
|
|
description: Automatically apply speculative-decoding label
|
|
conditions:
|
|
- or:
|
|
- files~=^vllm/spec_decode/
|
|
- files=vllm/model_executor/layers/spec_decode_base_sampler.py
|
|
- files~=^tests/spec_decode/
|
|
actions:
|
|
label:
|
|
add:
|
|
- speculative-decoding
|
|
|
|
- name: label-v1
|
|
description: Automatically apply v1 label
|
|
conditions:
|
|
- or:
|
|
- files~=^vllm/v1/
|
|
- files~=^tests/v1/
|
|
actions:
|
|
label:
|
|
add:
|
|
- v1
|
|
|
|
- name: label-tpu
|
|
description: Automatically apply tpu label
|
|
# Keep this list in sync with `label-tpu-remove` conditions
|
|
conditions:
|
|
- or:
|
|
- files~=tpu.py
|
|
- files~=_tpu
|
|
- files~=tpu_
|
|
- files~=/tpu/
|
|
- files~=pallas
|
|
actions:
|
|
label:
|
|
add:
|
|
- tpu
|
|
|
|
- name: label-tpu-remove
|
|
description: Automatically remove tpu label
|
|
# Keep this list in sync with `label-tpu` conditions
|
|
conditions:
|
|
- and:
|
|
- -files~=tpu.py
|
|
- -files~=_tpu
|
|
- -files~=tpu_
|
|
- -files~=/tpu/
|
|
- -files~=pallas
|
|
actions:
|
|
label:
|
|
remove:
|
|
- tpu
|
|
|
|
- name: ping author on conflicts and add 'needs-rebase' label
|
|
conditions:
|
|
- conflict
|
|
- -closed
|
|
actions:
|
|
label:
|
|
add:
|
|
- needs-rebase
|
|
comment:
|
|
message: |
|
|
This pull request has merge conflicts that must be resolved before it can be
|
|
merged. Please rebase the PR, @{{author}}.
|
|
|
|
https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/syncing-a-fork
|
|
|
|
- name: remove 'needs-rebase' label when conflict is resolved
|
|
conditions:
|
|
- -conflict
|
|
- -closed
|
|
actions:
|
|
label:
|
|
remove:
|
|
- needs-rebase
|