Something went wrong while fetching comments. Please try again.
Created by: slimsag
I am working on a feature that will let you invite collaborators to your repositories while you wait for repositories to clone on Sourcegraph:
In order to identify collaborators we can invite, we need to use GitHub's API (we can't use our own, because the repositories are not yet cloned.) I've added this to our GitHub v4 GraphQL client, and exposed the data over GraphQL via a new ExternalService.invitableCollaborators field.
I chose to use the GitHub API for enumerating committers (not the repository collaborator API) because:
To avoid imposing any additional load on our rate limits with the user's GitHub access token, we only query GitHub for 20 repositories out of those that you've chosen to add to Sourcegraph.