From 2b43f754ce643a896b1e82b011d9df2453fe4d2e Mon Sep 17 00:00:00 2001 From: Erik Brakkee Date: Sun, 8 Dec 2024 14:37:52 +0100 Subject: [PATCH] Reverted to simpler format for release notes. --- .github/workflows/pipeline.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 5b799ad..9555663 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -161,10 +161,10 @@ jobs: # Get all commits between tags if [ -z "$prev_tag" ]; then echo "### 🔄 All Commits" >> release_notes.md - git log --pretty=format:"* %h - %s (%an)%n%w(4,4,4)%b" >> release_notes.md + git log --pretty=format:"* %h - %s (%an)" >> release_notes.md else echo "### 🔄 Commits since $prev_tag" >> release_notes.md - git log --pretty=format:"* %h - %s (%an)%n%w(4,4,4)%b" $prev_tag..${{ steps.tag.outputs.tag }} >> release_notes.md + git log --pretty=format:"* %h - %s (%an)" $prev_tag..${{ steps.tag.outputs.tag }} >> release_notes.md fi echo "" >> release_notes.md