From 408cf42f67dbcd50027fcd0f6ba35df83ced9107 Mon Sep 17 00:00:00 2001 From: Shiming Zhang Date: Mon, 8 Dec 2025 18:29:14 +0800 Subject: [PATCH] [CI] Prevents triggering of an inactive issue/PR check for forked repository. (#29654) Signed-off-by: Shiming Zhang --- .github/workflows/stale.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index dca3089f496c..c8a52f1a6326 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -7,6 +7,8 @@ on: jobs: close-issues-and-pull-requests: + # Prevents triggering on forks or other repos + if: github.repository == 'vllm-project/vllm' permissions: issues: write pull-requests: write