From a9b59685527d4ccdc81b9b8e8e3b45be96217a2f Mon Sep 17 00:00:00 2001 From: derrod Date: Wed, 19 Jun 2024 13:21:38 +0200 Subject: [PATCH] CI: Add tag subject to Windows patch notes --- .github/actions/windows-patches/action.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/actions/windows-patches/action.yaml b/.github/actions/windows-patches/action.yaml index 3c7dec67a..95d5688be 100644 --- a/.github/actions/windows-patches/action.yaml +++ b/.github/actions/windows-patches/action.yaml @@ -87,7 +87,10 @@ runs: run: | # Release notes are just the tag body on Windows Set-Location repo - git tag -l --format='%(contents:body)' ${{ inputs.tagName }} > "${{ github.workspace }}/notes.rst" + git tag -l --format='%(contents:subject)' ${{ inputs.tagName }} > "${{ github.workspace }}/notes.rst" + Write-Output "###################################################" >> "${{ github.workspace }}/notes.rst" + Write-Output "" >> "${{ github.workspace }}/notes.rst" + git tag -l --format='%(contents:body)' ${{ inputs.tagName }} >> "${{ github.workspace }}/notes.rst" - name: Run bouf shell: pwsh