Skip to content

Instantly share code, notes, and snippets.

@HarlemSquirrel
Created September 17, 2024 00:25
Show Gist options
  • Save HarlemSquirrel/7900d46e15d14bb20dbc7c150d123f28 to your computer and use it in GitHub Desktop.
Save HarlemSquirrel/7900d46e15d14bb20dbc7c150d123f28 to your computer and use it in GitHub Desktop.
List all my my GitHub repos that are not archived
gh api graphql --paginate -f query='
query {
viewer {
repositories(first: 100, isArchived: false) {
nodes { nameWithOwner }
}
}
}
' | jq -r '.data.viewer.repositories.nodes[]."nameWithOwner"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment