Skip to content

Commit

Permalink
fix: omit bots from authors (#4547)
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar authored Mar 15, 2022
1 parent 0e7511d commit c830694
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,6 @@ Tierney Cyren <accounts@bnb.im>
Guillaume Grossetie <g.grossetie@gmail.com>
linkgoron <Linkgoron@users.noreply.github.com>
Quentin Barbe <forty@everteam.org>
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Delapouite <delapouite@gmail.com>
F. Hinkelmann <franziska.hinkelmann@gmail.com>
Tierney Cyren <hello@bnb.im>
Expand Down
2 changes: 1 addition & 1 deletion scripts/update-authors.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

git log --use-mailmap --reverse --format='%aN <%aE>' | perl -wnE '
git log --use-mailmap --reverse --format='%aN <%aE>' | grep -v "\[bot\]" | perl -wnE '
BEGIN {
say "# Authors sorted by whether or not they\x27re me";
}
Expand Down

0 comments on commit c830694

Please sign in to comment.