From 34bbbef4b3cae05fa60413b5cc9778059b92fc82 Mon Sep 17 00:00:00 2001 From: huangzhangshu <109708205+JashBook@users.noreply.github.com> Date: Fri, 29 Mar 2024 16:26:07 +0800 Subject: [PATCH] chore: fix issue move error (#6923) --- .github/workflows/issues-move.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/issues-move.yml b/.github/workflows/issues-move.yml index 7d76f58b449..df9c60bea4e 100644 --- a/.github/workflows/issues-move.yml +++ b/.github/workflows/issues-move.yml @@ -105,6 +105,7 @@ jobs: if: | github.event.action == 'published' run: | + RELEASE_BODY=$(echo ${{ github.event.release.body }} | sed 's/"/\\"/g') cd ${{ github.workspace }} bash ${{ github.workspace }}/.github/utils/issue_prerelease.sh \ ${{ env.GITHUB_TOKEN }} \ @@ -113,4 +114,4 @@ jobs: $PROJECT_ID \ $STATUS_FIELD_ID \ ${{ env.TODO_OPTION_ID }} \ - "${{ github.event.release.body }}" + "${RELEASE_BODY}"