From 91c510a769db0f9b79df0efbdded0c29c033f846 Mon Sep 17 00:00:00 2001 From: "taku.tsunose" Date: Sat, 28 Jun 2025 01:25:00 +0900 Subject: [PATCH] fix: add missing LABEL_TRIGGER environment variable to prepare step (#209) The label_trigger input was defined but not passed as an environment variable to the prepare step, causing it to be undefined in the prepare script. This adds the missing LABEL_TRIGGER environment variable mapping. Co-authored-by: taku.tsunose --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index dbf11be..5eadd7e 100644 --- a/action.yml +++ b/action.yml @@ -106,6 +106,7 @@ runs: env: TRIGGER_PHRASE: ${{ inputs.trigger_phrase }} ASSIGNEE_TRIGGER: ${{ inputs.assignee_trigger }} + LABEL_TRIGGER: ${{ inputs.label_trigger }} BASE_BRANCH: ${{ inputs.base_branch }} BRANCH_PREFIX: ${{ inputs.branch_prefix }} ALLOWED_TOOLS: ${{ inputs.allowed_tools }}