From a2438a42398c367e7dbc979af78b61e79984d6ca Mon Sep 17 00:00:00 2001 From: Gar Date: Wed, 27 Apr 2022 07:12:27 -0700 Subject: [PATCH] chore: remove new ops bot strings from authors --- AUTHORS | 2 +- scripts/update-authors.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 5e7c0c9ad8e6c..7bddcf7dc4ba9 100644 --- a/AUTHORS +++ b/AUTHORS @@ -829,4 +829,4 @@ David Walker Boris Verkhovskiy JSKitty CommanderRoot -npm cli ops bot +Marco Tizzoni diff --git a/scripts/update-authors.sh b/scripts/update-authors.sh index 732ad7d3504d6..ad0dacc349263 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>' | grep -v "\[bot\]" | perl -wnE ' +git log --use-mailmap --reverse --format='%aN <%aE>' | grep -v "\[bot\]" | grep -v "ops+robot" | grep -v "npm cli ops bot" | perl -wnE ' BEGIN { say "# Authors sorted by whether or not they\x27re me"; }