MCPcopy Create free account
hub / github.com/ReviewStage/stage-cli / editTitle

Function editTitle

packages/cli/src/github/mutations.ts:31–33  ·  view source on GitHub ↗
(repoRoot: string, number: number, title: string)

Source from the content-addressed store, hash-verified

29};
30
31export function editTitle(repoRoot: string, number: number, title: string): Promise<void> {
32 return ghWrite(["pr", "edit", String(number), "--title", title], repoRoot);
33}
34
35export function closePullRequest(repoRoot: string, number: number): Promise<void> {
36 return ghWrite(["pr", "close", String(number)], repoRoot);

Callers 1

Calls 1

ghWriteFunction · 0.85

Tested by

no test coverage detected