Created
September 17, 2024 00:25
-
-
Save HarlemSquirrel/7900d46e15d14bb20dbc7c150d123f28 to your computer and use it in GitHub Desktop.
List all my my GitHub repos that are not archived
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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