Sunflowers
Sunflowers

Reputation: 67

How to view project's members on GitHub?

Being a project's members means they have right to commit patches. I want to get a list of these developers of projects on GitHub. How to view project's members on GitHub?

Upvotes: 0

Views: 421

Answers (1)

VonC
VonC

Reputation: 1329112

You could use the GitHub API and list project collaborators

GET /projects/:project_id/collaborators

That would give you the list programmatically.

Upvotes: 1

Related Questions