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 b3f48ca commit b23a4a7Copy full SHA for b23a4a7
scripts/list-external-contributors.sh
@@ -0,0 +1,11 @@
1
+#!/bin/bash
2
+
3
+# Usage: ./scripts/list-external-contributors.sh <TAG>
4
5
+set -e
6
7
+date_of_tag=$(git log -1 --format=%aI --date=iso-strict $1)
8
+unique_authors=$(gh api "repos/libp2p/rust-libp2p/commits?since=$date_of_tag" --paginate -q '.[].author.login' | sort -u)
9
+rust_libp2p_maintainers_team_members=$(gh api teams/6797340/members --paginate | jq -r '.[].login' | sort -u)
10
11
+echo "$unique_authors" | grep -vxF -f <(echo "$rust_libp2p_maintainers_team_members") | grep -vF "bot" | grep -vF "web-flow"
0 commit comments