Skip to content

Commit

Permalink
fix: omit bots from authors (npm#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 <[email protected]>
Guillaume Grossetie <[email protected]>
linkgoron <[email protected]>
Quentin Barbe <[email protected]>
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Delapouite <[email protected]>
F. Hinkelmann <[email protected]>
Tierney Cyren <[email protected]>
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.