From cbcd5e2ab7e7f2498021d5043da9999f62dcf44d Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sun, 29 Jun 2025 14:10:56 +0200 Subject: [PATCH] fix(action): standardize input key naming - Update input key from `allow-non-main-release` to `allow_non_main_release` - Ensure consistency with environment variable naming convention --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 989f0c5..4771cb0 100644 --- a/action.yml +++ b/action.yml @@ -14,7 +14,7 @@ inputs: description: "Commit-Autore-Mail" required: false default: "" - allow-non-main-release: + allow_non_main_release: description: "Allow publishing releases from branches other than 'main'." required: false default: "false" @@ -29,7 +29,7 @@ runs: GITHUB_EVENT_BEFORE: ${{ github.event.before || '' }} GITHUB_SHA: ${{ github.sha || '' }} GITHUB_REF: ${{ github.ref || '' }} - ALLOW_NON_MAIN_RELEASE: ${{ inputs.allow-non-main-release }} + ALLOW_NON_MAIN_RELEASE: ${{ inputs.allow_non_main_release }} run: | ${{ github.action_path }}/scripts/detect-version-change.sh