You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DevOps-Bash-tools/github/github_repos_with_few_users.sh

72 lines
1.9 KiB
Bash

#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
# args: 2
#
# Author: Hari Sekhon
# Date: 2021-12-29 18:08:23 +0000 (Wed, 29 Dec 2021)
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
# https://www.linkedin.com/in/HariSekhon
#
set -euo pipefail
[ -n "${DEBUG:-}" ] && set -x
srcdir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
# shellcheck source=lib/git.sh
. "$srcdir/lib/github.sh"
# shellcheck disable=SC2034,SC2154
usage_description="
Finds GitHub repo with few users, which in Enterprises is a sign that a user has created a repo without assigning team privileges
The default user threshold if not given is 1
Output format:
<org>/<repo3>
<org>/<repo5>
...
Output format if \$VERBOSE is set (timestamped logs are sent to stderr):
2021-12-29 18:09:57 checking repos for '<org>' with <= 1 users
2021-12-29 18:09:57 checking repo: <org>/<repo1>
2021-12-29 18:09:57 checking repo: <org>/<repo2>
2021-12-29 18:09:58 checking repo: <org>/<repo3>
<org>/<repo3>
2021-12-29 18:10:00 checking repo: <org>/<repo4>
...
"
# used by usage() in lib/utils.sh
# shellcheck disable=SC2034
usage_args="[<minimum_number_of_users>]"
help_usage "$@"
minimum_number_of_users="${1:-1}"
if ! is_int "$minimum_number_of_users"; then
usage "invalid number of users argument '$minimum_number_of_users', must be an integer"
fi
user="${GITHUB_USER:-$(get_github_user)}"
user_or_org="${GITHUB_ORGANIZATION:-$user}"
log "checking repos for '$user_or_org' with <= $minimum_number_of_users users"
get_github_repos "$user_or_org" "${GITHUB_ORGANIZATION:-}" |
while read -r repo; do
log "checking repo: $user_or_org/$repo"
"$srcdir/github_api.sh" "/repos/$user_or_org/$repo/collaborators" |
jq -r "select(length <= $minimum_number_of_users) | \"$repo\""
done