From bd48ae134bec1462538e8db5042bd8c8138b6425 Mon Sep 17 00:00:00 2001 From: Yuki Ohmae Date: Wed, 19 Nov 2025 10:29:16 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=E9=80=A3=E7=B6=9A=E3=81=99=E3=82=8B?= =?UTF-8?q?=E3=83=80=E3=83=96=E3=83=AB=E3=82=B3=E3=83=BC=E3=83=86=E3=83=BC?= =?UTF-8?q?=E3=82=B7=E3=83=A7=E3=83=B3=E3=82=92=E5=90=AB=E3=82=80=E3=81=A8?= =?UTF-8?q?=E9=81=A9=E5=88=87=E3=81=AB=E3=82=A8=E3=82=B9=E3=82=B1=E3=83=BC?= =?UTF-8?q?=E3=83=97=E3=81=95=E3=82=8C=E3=81=AA=E3=81=84=E3=81=9F=E3=82=81?= =?UTF-8?q?--body-file=E3=82=92=E4=BD=BF=E3=81=86=E3=82=88=E3=81=86?= =?UTF-8?q?=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/actions/create-release-pr-for-gem/action.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/actions/create-release-pr-for-gem/action.yml b/.github/actions/create-release-pr-for-gem/action.yml index fe78e95..1371173 100644 --- a/.github/actions/create-release-pr-for-gem/action.yml +++ b/.github/actions/create-release-pr-for-gem/action.yml @@ -62,10 +62,8 @@ runs: env: GH_TOKEN: ${{ env.GITHUB_TOKEN }} run: | - BODY=$(cat < /tmp/pr_body.txt ${{ steps.changelog.outputs.clean_changelog }} EOF - ) - ESCAPED_BODY=$(echo "$BODY" | sed 's/"/\\"/g') - gh pr create --title "chore: Release version to v${{ steps.changelog.outputs.version }}" --body "$ESCAPED_BODY" --base ${{ inputs.base-branch }} --head release/${{ inputs.tag-prefix }}${{ steps.changelog.outputs.version }} + gh pr create --title "chore: Release version to v${{ steps.changelog.outputs.version }}" --body-file /tmp/pr_body.txt --base ${{ inputs.base-branch }} --head release/${{ inputs.tag-prefix }}${{ steps.changelog.outputs.version }} shell: bash