Skip to content

Instantly share code, notes, and snippets.

@mh-mobile
Last active May 16, 2022 15:01
Show Gist options
  • Save mh-mobile/61aad988e92cc4fd37a8756ac4d202e8 to your computer and use it in GitHub Desktop.
Save mh-mobile/61aad988e92cc4fd37a8756ac4d202e8 to your computer and use it in GitHub Desktop.
GitHubの指定のユーザーのreiew数を取得
#!/usr/bin/env bash
token=$1
shift
for user in "${@}"; do
echo "${user}: $(curl -s -H "Authorization: ${token}"\
"https://api.github.com/search/issues?q=is%3Apr+is%3Aopen+review-requested%3A${user}" \
| jq '.total_count')"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment