View milestones for all GitHub repositories

Is there a way in GitHub for organizations to see how your organization works at all its stages at the same time, as opposed to viewing all repos and clicking on β€œquestions” β†’ breakpoints and seeing only one?

If this is not possible from the interface, I can go and set up an API based solution if this is the only way.

+7
source share
3 answers

I don't think this is possible from the interface, but it looks doable from the API.

You will need to make GET /user/repos and from the returned JSON array do GET /repos/:user/:repo/milestones for each repo.

+1
source

As far as I know, the error tracker is the same for both ordinary users and corporate users. And ordinary users cannot view all their problems at the same time.

So you probably need to play around with the GitHub Issues API to get what you want.

0
source

DataHero does it! It can involve all the problems in all repositories for the organization. We use DataHero internally to calculate our progress at individual stages and at all stages.

https://datahero.com/partners/github/

How we use it inside: https://datahero.com/blog/2013/08/13/managing-github-projects-with-datahero/

Feel free to contact if I can help anyway. Disclosure: I work for DataHero

0
source

All Articles