From 2f9c523bbebc91d92e54767b981f3d7851e63cc2 Mon Sep 17 00:00:00 2001 From: Shadow Date: Fri, 13 Feb 2026 12:14:49 -0600 Subject: [PATCH] CI: run auto-response on label events (#15657) --- .github/workflows/auto-response.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-response.yml b/.github/workflows/auto-response.yml index c43df1e4062..29b4d05008f 100644 --- a/.github/workflows/auto-response.yml +++ b/.github/workflows/auto-response.yml @@ -89,7 +89,8 @@ jobs: } } - if (!hasTriggerLabel) { + const isLabelEvent = context.payload.action === "labeled"; + if (!hasTriggerLabel && !isLabelEvent) { return; }