( token: string, context: PullRequestContext, comments: Comment[], )
| 184 | } |
| 185 | |
| 186 | export async function partitionReviewCommentsByDiff( |
| 187 | token: string, |
| 188 | context: PullRequestContext, |
| 189 | comments: Comment[], |
| 190 | ) { |
| 191 | const octokit = new Octokit({ auth: token }); |
| 192 | return partitionReviewCommentsWithOctokit(octokit, context, comments); |
| 193 | } |
no test coverage detected
searching dependent graphs…