From db49fc8aafcc07145a9f76ad798bb9088f650ba5 Mon Sep 17 00:00:00 2001 From: James Seward Date: Sun, 3 Mar 2024 13:27:54 +0000 Subject: [PATCH] Fix contributors script and update file Previously, it was just including the first field of the committer's name, so this fixes it to be the fully name. Apologies to those affected previously. --- CONTRIBUTORS | 54 +++++++++++++++++++----------------- build/update-contributors.sh | 2 +- 2 files changed, 29 insertions(+), 27 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 8f93bf8f..dea2a854 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,34 +1,35 @@ BrainDoctor -Bruno -Charlie -Christian -Daniele -Ed -Erwin +Bruno Volpato +Carles Pina i Estany +Charlie & +Christian Groschupp +Daniele Teti +Ed Levin +Erwin Goslawski Fabian -Fred +Fred Clift FvDxxx -G -Herman -James -Jamie -Joe -John -Kirk -LGTM +G Fisher +Herman Slatman +James Seward +Jamie McClelland +Joe Shamah +John Impallomeni +Kirk Winkelman +LGTM Migrator MattK -Michał -Paolo -Patrick -Ryan -Sara -Scott -Sebastian -Simeon +Michał Słomkowski +Paolo Cretaro +Patrick Valsecchi +Ryan Jarvis +Sara Murray +Scott Horsley +Sebastian Klapp +Simeon Felis Tim -User -Valentin -Wayward +User & +Valentin Lorentz +Wayward One WoJ andrew andronkyr @@ -42,6 +43,7 @@ pheuzoune r4r3 rarosalion shakreiner +snyk-bot tlegras wojtek wxcafé diff --git a/build/update-contributors.sh b/build/update-contributors.sh index d3fa0922..53b7f8e8 100755 --- a/build/update-contributors.sh +++ b/build/update-contributors.sh @@ -2,6 +2,6 @@ contributors=CONTRIBUTORS [[ -f "$contributors".tmp ]] && rm -f "$contributors".tmp -git shortlog -s | awk '!/dependabot/ {print $2}' > "$contributors".tmp +git shortlog -s | grep -vE "dependabot|synk-bot" | cut -f2- > "$contributors".tmp sort -u CONTRIBUTORS.tmp > CONTRIBUTORS [[ -f "$contributors".tmp ]] && rm -f "$contributors".tmp