From 0daaea8e014a99ef673a5c19432cbcb5c6e10b0b Mon Sep 17 00:00:00 2001 From: z <30433876+srczhang@users.noreply.github.com> Date: Thu, 2 Dec 2021 16:34:51 +0800 Subject: [PATCH] add a collapse for release note. --- .github/workflows/release-automation.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-automation.yml b/.github/workflows/release-automation.yml index fa873bdce..989fcb6a3 100644 --- a/.github/workflows/release-automation.yml +++ b/.github/workflows/release-automation.yml @@ -37,6 +37,8 @@ jobs: PREVIOUS_RELEASE_TAG=$(git tag --list iceraven-* --sort=-creatordate | tail -n+2 | head -n 1) echo "## Automated release of version ${{ github.event.ref }} browser" >>temp_changelog.md + echo "
" >>temp_changelog.md + echo "Click to expand" >>temp_changelog.md echo " " >>temp_changelog.md echo "This is an automated release, consisting of the following changes:" >>temp_changelog.md echo "### Change log (commit history since previous release)" >>temp_changelog.md @@ -44,6 +46,7 @@ jobs: git log ${{ github.event.ref }}...$PREVIOUS_RELEASE_TAG --pretty='format:%C(auto)%h (%as) %s' >>temp_changelog.md echo " " >>temp_changelog.md echo " " >>temp_changelog.md + echo "
" >>temp_changelog.md echo "**NOTE**: @fork-maintainers, you can edit these auto-generated release notes with a more user-friendly summary of the key changes, if needed." >>temp_changelog.md echo " " >>temp_changelog.md