Skip to content

Commit

Permalink
Merge pull request #6 from askb/main
Browse files Browse the repository at this point in the history
Fix: bug in author information
  • Loading branch information
tykeal authored Oct 2, 2024
2 parents ea9b34a + 4e1fb57 commit 702a32b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github2gerrit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ jobs:
git log -v --format=%B --reverse "HEAD..HEAD@{1}" | grep -Ev "^(Signed-off-by|Change-Id)" > commit-msg.txt
# capture author info
git show -s --pretty=format:"%an <%ae>" -n1 > author-info.txt
git show -s --pretty=format:"%an <%ae>" "HEAD..HEAD@{1}" > author-info.txt
if [[ -s author-info.txt ]]; then
author="$(cat author-info.txt)"
fi
Expand Down

0 comments on commit 702a32b

Please sign in to comment.