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 so
To export from a private repo using curl, you can run the following:
curl -i "https://api.github.com/repos/
Where the user has access to the private repo. You can then convert the resulting json into csv using any suitable converter as suggested in other answers.
Find authentication reference here.