Skip to content

Commit

Permalink
fix(github): use contributors api instead of collaborators since it d…
Browse files Browse the repository at this point in the history
…oes not longer exists
  • Loading branch information
llosimura authored and tagoro9 committed Sep 15, 2021
1 parent ecc4868 commit 3c7c93d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/git/Github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ export class Github implements Remote {
private async listContributors(): Promise<Array<{ login: string }>> {
const collaborators = await this.queueCall(
() =>
this.api.repos.listCollaborators({
this.api.repos.listContributors({
owner: this.config.owner,
per_page: 100,
repo: this.config.repo,
Expand Down

0 comments on commit 3c7c93d

Please sign in to comment.