(commentId: number)
| 234 | * Delete a comment on a PR |
| 235 | */ |
| 236 | export async function deletePrComment(commentId: number) { |
| 237 | await request("DELETE /repos/{owner}/{repo}/issues/comments/{comment_id}", { |
| 238 | ...requestOptions(), |
| 239 | comment_id: commentId, |
| 240 | }); |
| 241 | } |
| 242 | |
| 243 | /** |
| 244 | * Add labels to a PR (or issue) |
no test coverage detected