CI: run auto-response on label events (#15657)

This commit is contained in:
Shadow 2026-02-13 12:14:49 -06:00 committed by GitHub
parent 5cd9e210fa
commit 2f9c523bbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -89,7 +89,8 @@ jobs:
}
}
if (!hasTriggerLabel) {
const isLabelEvent = context.payload.action === "labeled";
if (!hasTriggerLabel && !isLabelEvent) {
return;
}