()
| 221 | export const getRepoCollaborators = async (owner: string, repo: string, octokit: Octokit) => { |
| 222 | try { |
| 223 | const fetchFn = () => octokit.paginate(octokit.repos.listCollaborators, { |
| 224 | owner, |
| 225 | repo, |
| 226 | per_page: 100, |
| 227 | }); |
| 228 | |
| 229 | const collaborators = await fetchWithRetry(fetchFn, `repo ${owner}/${repo}`, logger); |
| 230 | return collaborators; |
nothing calls this directly
no outgoing calls
no test coverage detected