How can I export GitHub issues to Excel?

前端 未结 12 1856
逝去的感伤
逝去的感伤 2020-12-07 15:46

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

12条回答
  •  南方客
    南方客 (楼主)
    2020-12-07 16:27

    If that is a one-time task, you may play around with GitHub WebAPI. It allows to export the issues in JSON format. Then you can convert it to Excel (e.g. using some online converter).

    Just open the following URL in a browser substituting the {owner} and {repo} with real values:

    https://api.github.com/repos/{owner}/{repo}/issues?page=1&per_page=100

提交回复
热议问题