File tree Expand file tree Collapse file tree
create-release-pr-for-gem
create-release-pr-for-npm Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5858 env :
5959 GH_TOKEN : ${{ env.GITHUB_TOKEN }}
6060 run : |
61- BODY=${{ steps.changelog.outputs.clean_changelog }}
61+ BODY=$(cat <<EOF
62+ ${{ steps.changelog.outputs.clean_changelog }}
63+ EOF
64+ )
6265 ESCAPED_BODY=$(echo $BODY | sed 's/"/\\"/g')
6366 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 }}
6467 shell : bash
Original file line number Diff line number Diff line change 5454 env :
5555 GH_TOKEN : ${{ env.GITHUB_TOKEN }}
5656 run : |
57- BODY=${{ steps.changelog.outputs.clean_changelog }}
57+ BODY=$(cat <<EOF
58+ ${{ steps.changelog.outputs.clean_changelog }}
59+ EOF
60+ )
5861 ESCAPED_BODY=$(echo $BODY | sed 's/"/\\"/g')
5962 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 }}
6063 shell : bash
You can’t perform that action at this time.
0 commit comments