Compare commits

...

1 Commits

Author SHA1 Message Date
blink-so[bot] 9b28516e77 chore(release): always mention GitHub username for commit author
Co-authored-by: matifali <10648092+matifali@users.noreply.github.com>
2025-08-23 20:42:33 +00:00
+2 -2
View File
@@ -90,8 +90,8 @@ jobs:
if [ -n "$COMMIT_LINES" ]; then
FILTERED_CHANGELOG="${FILTERED_CHANGELOG}${COMMIT_LINES}\n"
else
COMMIT_MSG=$(git log --format="%s" -n 1 $sha)
AUTHOR=$(gh api repos/:owner/:repo/commits/$sha --jq '.author.login // .commit.author.name')
COMMIT_MSG=$(git log --format=\"%s\" -n 1 $sha)
AUTHOR=$(gh api repos/:owner/:repo/commits/$sha --jq '.author.login')
FILTERED_CHANGELOG="${FILTERED_CHANGELOG}* $COMMIT_MSG by @$AUTHOR\n"
fi
done