From 4a647cad5d307148f55583bb982fb10298ab2b20 Mon Sep 17 00:00:00 2001 From: Gar Date: Thu, 10 Mar 2022 10:43:47 -0800 Subject: [PATCH] fix: omit bots from authors --- AUTHORS | 1 - scripts/update-authors.sh | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 6d503651970ae..a38892068303a 100644 --- a/AUTHORS +++ b/AUTHORS @@ -819,7 +819,6 @@ Tierney Cyren Guillaume Grossetie linkgoron Quentin Barbe -dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Delapouite F. Hinkelmann Tierney Cyren diff --git a/scripts/update-authors.sh b/scripts/update-authors.sh index ac7b99137a987..732ad7d3504d6 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"; }