Skip to content

Commit

Permalink
chore: exclude bots from contributor list
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Jul 7, 2023
1 parent 560edbb commit 3d37c6a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/git/scripts/list_contributors
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,8 @@
# - Keep everything on the line starting from the second column.
# * `sort`
# - Sort in lexicographic order.
git shortlog -sne | cut -f 2 | sort
# * `grep -v`
# - Exclude GitHub actions.
# * `grep -v`
# - Exclude the stdlib bot.
git shortlog -sne | cut -f 2 | sort | grep -v '^github-actions' | grep -v '^stdlib-bot'

0 comments on commit 3d37c6a

Please sign in to comment.