Reputation: 6623
I seem to be missing if it's possible to query github for any / all repos that a member is a collaborator on? I'm writing a github oauth node app, and I'm trying to get, not only the members repos, but any repos they are a collaborator on. Is this possible?
Upvotes: 2
Views: 70
Reputation: 18782
I think this endpoint should help you with that:
https://developer.github.com/v3/repos/#list-your-repositories
Notice the description and the available parameters.
Upvotes: 1