(commentId: number, body: string)
| 207 | * Update a comment on a PR |
| 208 | */ |
| 209 | export async function updatePrComment(commentId: number, body: string) { |
| 210 | await request("PATCH /repos/{owner}/{repo}/issues/comments/{comment_id}", { |
| 211 | ...requestOptions(), |
| 212 | comment_id: commentId, |
| 213 | body, |
| 214 | }); |
| 215 | } |
| 216 | |
| 217 | /** |
| 218 | * Get all files changed in a PR |
no test coverage detected