From: Yu Watanabe Date: Thu, 30 Nov 2023 02:55:27 +0000 (+0900) Subject: contrib: include co-authors to the contributor list of NEWS X-Git-Tag: v255~38 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3b33fa3aa292459393f12ae418f31ebb2076c42;p=platform%2Fupstream%2Fsystemd.git contrib: include co-authors to the contributor list of NEWS Closes #30261. --- diff --git a/tools/git-contrib.sh b/tools/git-contrib.sh index cde1ecd..6371d49 100755 --- a/tools/git-contrib.sh +++ b/tools/git-contrib.sh @@ -3,7 +3,12 @@ set -eu tag="$(git describe --abbrev=0 --match 'v[0-9][0-9][0-9]')" -git log --pretty=tformat:%aN -s "${tag}.." | +( + # authors + git log --pretty=tformat:%aN -s "${tag}.." + # Co-authors (drop empty line and mail addresses) + git log --pretty='tformat:%(trailers:key=Co-authored-by,valueonly)' -s "${tag}.." | sed -e '/^[[:space:]]*$/ d' | sed -e 's/ <.*@.*>$//' +) | grep -v noreply@weblate.org | sed 's/ / /g; s/--/-/g; s/.*/\0,/' | sort -u | tr '\n' ' ' | sed -e "s/^/Contributions from: /g" -e "s/,\s*$/\n/g" | fold -w 72 -s |