We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 584bcc9 commit 079e35fCopy full SHA for 079e35f
.github/workflows/build.yml
@@ -240,9 +240,9 @@ jobs:
240
run: |
241
LAST_TAG=$(git tag --sort=-version:refname | head -n 1)
242
if [ -n "$LAST_TAG" ]; then
243
- git log "$LAST_TAG..HEAD" --pretty=format:"- %s" --no-merges > changelog.txt
+ git log "$LAST_TAG..HEAD" --pretty=format:'- `%h` (%an) %s' > changelog.txt
244
else
245
- git log --pretty=format:"- %s" --no-merges > changelog.txt
+ git log --pretty=format:'- `%h` (%an) %s' > changelog.txt
246
fi
247
echo "Last tag used for changelog: ${LAST_TAG:-<none, full history>}"
248
cat changelog.txt
0 commit comments