azu/lerna-monorepo-github-actions-release

GitHub Relase body from Release PR body

azu opened this issue · 1 comments

azu commented

Copy merged Pull Request body to GitHub Release body.

azu commented

if: steps.tag_check.outputs.exists_tag == 'false' && github.event.pull_request.merged == true
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ env.CURRENT_VERSION }}
# Copy Pull Request's tile and body to Release Note
release_name: ${{ github.event.pull_request.title }}
body: |
${{ github.event.pull_request.body }}
implemented