Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Viewing Milestones for all GitHub Repos of an organization

Tags:

github

api

In GitHub for organizations is there a way to see how your org is doing on all of its milestones at once, as opposed to having to browse into each repo and click issues->milestones and only seeing that one?

If this is impossible from the interface I might go and set up an API-based solution if that's the only way.

like image 647
bgcode Avatar asked Nov 16 '11 23:11

bgcode


1 Answers

I don't think it's possible from the interface, but it does look doable from the API.

You'll need to do a GET /user/repos and from the returned JSON Array do a GET /repos/:user/:repo/milestones on each repo.

like image 58
vipw Avatar answered Nov 08 '22 05:11

vipw