From 93676b754abc939fd8a3ad6db852182df4216401 Mon Sep 17 00:00:00 2001 From: Nick Le Large Date: Mon, 11 Nov 2024 10:10:59 +0100 Subject: [PATCH] Add the PR description as release body --- .github/workflows/bump-version-and-create-release.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/bump-version-and-create-release.yaml b/.github/workflows/bump-version-and-create-release.yaml index 4642596..aabdd65 100644 --- a/.github/workflows/bump-version-and-create-release.yaml +++ b/.github/workflows/bump-version-and-create-release.yaml @@ -62,6 +62,10 @@ jobs: with: ref: ${{ needs.bump-version.outputs.new_tag }} + - name: Save Pull Request Description to File + run: | + echo "${{ github.event.pull_request.body }}" > /tmp/pull_request_description.md + - name: Build release packages uses: docker/build-push-action@v6 with: @@ -80,5 +84,5 @@ jobs: with: artifacts: "/tmp/artifacts/release/*" tag: ${{ needs.bump-version.outputs.new_tag }} - + bodyFile: /tmp/pull_request_description.md