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; }