We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents becff8d + 1442839 commit d5aa2b1Copy full SHA for d5aa2b1
1 file changed
.github/workflows/auto-release.yml
@@ -274,13 +274,16 @@ jobs:
274
- name: '🚀 Create GitHub Release'
275
env:
276
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
277
+ PR_BODY: ${{ github.event.pull_request.body }}
278
run: |
279
TAG="${{ steps.version.outputs.version_tag }}"
- PR_BODY="${{ github.event.pull_request.body }}"
280
+
281
+ # Write PR body to file to avoid shell interpretation issues
282
+ echo "$PR_BODY" > release_notes.md
283
284
gh release create "$TAG" \
285
--title "Release $TAG" \
- --notes "$PR_BODY" \
286
+ --notes-file release_notes.md \
287
--target main
288
289
echo "✅ GitHub Release created"
0 commit comments