Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGar <gar+gh@danger.computer>2022-03-15 21:10:35 +0300
committerGitHub <noreply@github.com>2022-03-15 21:10:35 +0300
commitc83069436ef4af75eaef071bc181ba1ab49729e9 (patch)
treee18621cd2908c8b74a1442990031d92c8634736c /scripts
parent0e7511d144bdb6624e4c0fdfb31b4b42ed2954c9 (diff)
fix: omit bots from authors (#4547)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-authors.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/update-authors.sh b/scripts/update-authors.sh
index ac7b99137..732ad7d35 100755
--- a/scripts/update-authors.sh
+++ b/scripts/update-authors.sh
@@ -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";
}