How can I export all my issues from an Enterprise GitHub repository to an Excel file? I have tried searching many Stack Overflow answers but did not succeed. I tried this solution too (exporting Git issues to CSV and getting "ImportError: No module named requests" errors. Is there any tool or any easy way to export all the issues to Excel?
Export Pull Requests can export issues to a CSV file, which can be opened with Excel.
In the upper-right corner of any page, click your profile photo, then click Settings. In the left sidebar, click Account. Under "Export account data", click Start export or New export. Once the export is ready to download, GitHub will send you a download link to your primary email address.
To export from a private repo using curl, you can run the following:
curl -i https://api.github.com/repos/<repo-owner>/<repo-name>/issues --header "Authorization: token <token>"
The token can be generated under Personal access tokens
Inspect the API description for all details.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With