From dd0f7dd4674b1e4abe8752b17bc474a561c6567b Mon Sep 17 00:00:00 2001 From: "Mio." Date: Wed, 10 Dec 2025 23:44:03 +0100 Subject: [PATCH] refactor(release): use
to avoid weird formatting --- .github/workflows/create_release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 6ccea6f4..4e76f02f 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -165,15 +165,15 @@ jobs: body: | ## 🚀 Release ${{ steps.apk_info.outputs.version }} - ### 📝 Pull Request - ${{ steps.pr_info.outputs.pr_number && format('- Pull Request #%s by @%s', steps.pr_info.outputs.pr_number, steps.pr_info.outputs.pr_author) || 'Manual release' }} - ${{ steps.pr_info.outputs.pr_title && format('- Title: %s', steps.pr_info.outputs.pr_title) || '' }} - ${{ steps.pr_info.outputs.is_first_contributor == 'true' && format('### 🎉 Welcome @%s on their first contribution!', steps.pr_info.outputs.pr_author) || '' }} + ${{ steps.pr_info.outputs.pr_body }} - ${{ steps.pr_info.outputs.pr_body && format('### 📋 Description:\n%s', steps.pr_info.outputs.pr_body) || '' }} + --- + +
+ 📦 View Full Commit Log - ### 📦 Changes since last release: ${{ steps.changelog.outputs.changelog }} +
--- 🤖 *This release was automatically created*