From 3c7c93da418f13ccad25a4947fe379c86c6f9d2b Mon Sep 17 00:00:00 2001 From: llosimura Date: Wed, 15 Sep 2021 13:35:17 -0700 Subject: [PATCH] fix(github): use contributors api instead of collaborators since it does not longer exists --- src/git/Github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git/Github.ts b/src/git/Github.ts index 3131352f..da461bd3 100644 --- a/src/git/Github.ts +++ b/src/git/Github.ts @@ -369,7 +369,7 @@ export class Github implements Remote { private async listContributors(): Promise> { const collaborators = await this.queueCall( () => - this.api.repos.listCollaborators({ + this.api.repos.listContributors({ owner: this.config.owner, per_page: 100, repo: this.config.repo,