MCPcopy Create free account
hub / github.com/remix-run/react-router / updatePrComment

Function updatePrComment

scripts/utils/github.ts:209–215  ·  view source on GitHub ↗
(commentId: number, body: string)

Source from the content-addressed store, hash-verified

207 * Update a comment on a PR
208 */
209export 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

Callers 2

runActionsFunction · 0.90
commentFunction · 0.90

Calls 2

requestOptionsFunction · 0.85
requestFunction · 0.50

Tested by

no test coverage detected