Skip to content

Instantly share code, notes, and snippets.

@rlespinasse
Created October 4, 2023 20:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rlespinasse/69c769651c3cd7aa1a1e6914e8619372 to your computer and use it in GitHub Desktop.
Save rlespinasse/69c769651c3cd7aa1a1e6914e8619372 to your computer and use it in GitHub Desktop.
get dependents count
mystats() {
repos=(
"rlespinasse/github-slug-action"
"rlespinasse/git-commit-data-action"
"rlespinasse/drawio-export-action"
"rlespinasse/release-that"
"rlespinasse/slugify-value"
"rlespinasse/shortify-git-revision"
)
for repo in ${repos[*]}; do
printf "%-35s | %-d\n" "$repo" "$(curl -s "https://github.com/$repo/network/dependents" | grep -B 1 ' Repositories' | head -1 | sed 's/ *//;s/,//')"
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment