We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 560edbb commit 3d37c6aCopy full SHA for 3d37c6a
tools/git/scripts/list_contributors
@@ -24,4 +24,8 @@
24
# - Keep everything on the line starting from the second column.
25
# * `sort`
26
# - Sort in lexicographic order.
27
-git shortlog -sne | cut -f 2 | sort
+# * `grep -v`
28
+# - Exclude GitHub actions.
29
30
+# - Exclude the stdlib bot.
31
+git shortlog -sne | cut -f 2 | sort | grep -v '^github-actions' | grep -v '^stdlib-bot'
0 commit comments