1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-09 01:18:19 +03:00

contrib: include co-authors to the contributor list of NEWS

Closes #30261.
This commit is contained in:
Yu Watanabe 2023-11-30 11:55:27 +09:00 committed by Luca Boccassi
parent 79bad078bb
commit b3b33fa3aa

View File

@ -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 |