Created
March 2, 2026 13:50
-
-
Save mh0w/a260e7be0960961b1bae4344d0a8fc99 to your computer and use it in GitHub Desktop.
export github issues to csv file using the `gh` cli tool
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 issue list --limit 1000 --state all --json number,title,state,author,createdAt,closedAt --template '{{range | |
| .}}{{.number}},{{printf "%q" .title}},{{.state}},{{.author.login}},{{.createdAt}},{{.closedAt}} | |
| {{end}}' > issues_4.csv |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment