Skip to content

Commit

Permalink
Fix contributors script and update file
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jamesoff committed Mar 3, 2024
1 parent 9c10c0c commit db49fc8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 27 deletions.
54 changes: 28 additions & 26 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -42,6 +43,7 @@ pheuzoune
r4r3
rarosalion
shakreiner
snyk-bot
tlegras
wojtek
wxcafé
2 changes: 1 addition & 1 deletion build/update-contributors.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit db49fc8

Please sign in to comment.