Skip to content

Commit

Permalink
Reverted to simpler format for release notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEngerd committed Dec 8, 2024
1 parent 4c78826 commit 2b43f75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2b43f75

Please sign in to comment.