From 28ed9d15d6f4a210be3d5ae19864cd898f7d7df2 Mon Sep 17 00:00:00 2001 From: Hector Martinez Date: Thu, 28 May 2026 11:21:50 +0200 Subject: [PATCH] fix(dispatch): route issues opened/edited to triage in per-repo mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per-repo reusable-dispatch.yml was missing the opened|edited → triage branch in the issues) case. Org-mode dispatch.yml has had this routing since the feature was introduced; per-repo was an omission from the original implementation (3bcd099e). Fixes #1241 Co-Authored-By: Claude Sonnet 4.6 Signed-off-by: Hector Martinez --- .github/workflows/reusable-dispatch.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable-dispatch.yml b/.github/workflows/reusable-dispatch.yml index 2bf2eea5b..2581dec19 100644 --- a/.github/workflows/reusable-dispatch.yml +++ b/.github/workflows/reusable-dispatch.yml @@ -164,7 +164,9 @@ jobs: ;; issues) - if [[ "${EVENT_ACTION}" == "labeled" ]]; then + if [[ "${EVENT_ACTION}" == "opened" || "${EVENT_ACTION}" == "edited" ]]; then + STAGE="triage" + elif [[ "${EVENT_ACTION}" == "labeled" ]]; then if [[ "${TRIGGERING_LABEL}" == "ready-to-code" ]]; then STAGE="code" elif [[ "${TRIGGERING_LABEL}" == "ready-for-review" ]]; then