[CI] Allow comment-triggered builds past pipeline filters (#50197)

Signed-off-by: khluu <khluu000@gmail.com>
This commit is contained in:
Kevin H. Luu
2026-07-28 19:11:04 -07:00
committed by GitHub
parent 7f4c52f2ba
commit 54ab69b14e
2 changed files with 2 additions and 0 deletions
@@ -381,6 +381,7 @@ def create_build_payload(
"pull_request_base_branch": pr["base"]["ref"],
"pull_request_repository": pr["head"]["repo"]["clone_url"],
"pull_request_labels": [label["name"] for label in pr["labels"]],
"ignore_pipeline_branch_filters": True,
"env": {
"VLLM_CI_GITHUB_COMMENT_ID": str(comment_id),
"VLLM_CI_TRIGGERED_BY": actor,
@@ -280,6 +280,7 @@ class RunCiCommandTest(unittest.TestCase):
"pull_request_base_branch": "main",
"pull_request_repository": ("https://github.com/contributor/vllm.git"),
"pull_request_labels": ["ready", "v1"],
"ignore_pipeline_branch_filters": True,
"env": {
"VLLM_CI_GITHUB_COMMENT_ID": "99",
"VLLM_CI_TRIGGERED_BY": "reviewer",