maint/thanks: Include some git trailers in acknowledgments
1 unresolved thread
1 unresolved thread
When building our list of acknowledgments, previously we would only include author and committer names.
Now we also include anybody listed in the "Reported-by", "Co-authored-by", and "Thanks" trailers.
This will be helpful so that we don't forget to acknowledge people who (for example) report security issues.
Merge request reports
Activity
assigned to @nickm
requested review from @Diziet
mentioned in issue #861 (closed)
12 10 13 TEMPDIR=$(mktemp -d) 11 14 TO_EXCLUDE="$(dirname "$0")/exclude_contributors.txt" 12 15 LAST_REV=$1 13 16 17 WE_CREDIT=( 18 # Name of the author. 19 %an 20 # Name of the committer. 21 %cn 22 # Anybody in Reported-by. (These are case-insensitive, don't worry.) 23 "%(trailers:valueonly=true,key=Reported-by)" 24 # Anybody in Co-Authored-By. 25 "%(trailers:valueonly=true,key=Co-Authored-by)" 26 # Anybody in Thanks. 27 "%(trailers:valueonly=true,key=Thanks)" mentioned in commit b15ca027
Please register or sign in to reply