Skip to content

Commit 3d37c6a

Browse files
committed
chore: exclude bots from contributor list
1 parent 560edbb commit 3d37c6a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/git/scripts/list_contributors

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,8 @@
2424
# - Keep everything on the line starting from the second column.
2525
# * `sort`
2626
# - Sort in lexicographic order.
27-
git shortlog -sne | cut -f 2 | sort
27+
# * `grep -v`
28+
# - Exclude GitHub actions.
29+
# * `grep -v`
30+
# - Exclude the stdlib bot.
31+
git shortlog -sne | cut -f 2 | sort | grep -v '^github-actions' | grep -v '^stdlib-bot'

0 commit comments

Comments
 (0)