Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mh0w/a260e7be0960961b1bae4344d0a8fc99 to your computer and use it in GitHub Desktop.

Select an option

Save mh0w/a260e7be0960961b1bae4344d0a8fc99 to your computer and use it in GitHub Desktop.
export github issues to csv file using the `gh` cli tool
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