Skip to content

Instantly share code, notes, and snippets.

@mgwalker
Created March 29, 2023 17:44
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 mgwalker/59a23d623c6f18a73d8ab63056870beb to your computer and use it in GitHub Desktop.
Save mgwalker/59a23d623c6f18a73d8ab63056870beb to your computer and use it in GitHub Desktop.
Get a list of GitHub repo admins

List GitHub repo admins

This assumes you have GitHub CLI and jq installed. To get a list of admins on a repo, you can run this:

gh api --paginate repos/{{ OWNER }}/{{ REPO }}/collaborators | jq '[ .[] | select(.permissions.admin == true) | .login ]'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment