Skip to content

Commit c830694

Browse files
authored
fix: omit bots from authors (#4547)
1 parent 0e7511d commit c830694

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

AUTHORS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -819,7 +819,6 @@ Tierney Cyren <[email protected]>
819819
Guillaume Grossetie <[email protected]>
820820
linkgoron <[email protected]>
821821
Quentin Barbe <[email protected]>
822-
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
823822
Delapouite <[email protected]>
824823
F. Hinkelmann <[email protected]>
825824
Tierney Cyren <[email protected]>

scripts/update-authors.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

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

0 commit comments

Comments
 (0)