From 849752b87cf7e68fd1ca1f4651f33ca0a76a3ddf Mon Sep 17 00:00:00 2001 From: hatajoe Date: Fri, 1 May 2026 12:58:45 +0900 Subject: [PATCH] feat: Support prerelease versions --- .github/actions/release-by-release-pr/action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/actions/release-by-release-pr/action.yml b/.github/actions/release-by-release-pr/action.yml index 47a1d28..cbfe09a 100644 --- a/.github/actions/release-by-release-pr/action.yml +++ b/.github/actions/release-by-release-pr/action.yml @@ -4,6 +4,9 @@ inputs: base-branch: required: true description: The base branch + prerelease: + description: Whether the release is a pre-release + default: "false" runs: using: "composite" steps: @@ -43,3 +46,4 @@ runs: tag_name: ${{ steps.parse_version.outputs.version }} release_name: ${{ steps.parse_version.outputs.version }} body: ${{ github.event.pull_request.body }} + prerelease: ${{ inputs.prerelease }}