MCPcopy Create free account
hub / github.com/dmno-dev/bumpy / updateReleaseBody

Function updateReleaseBody

packages/bumpy/src/core/github-release.ts:389–391  ·  view source on GitHub ↗
(tag: string, body: string, rootDir: string)

Source from the content-addressed store, hash-verified

387
388/** Update an existing GitHub release's body */
389export async function updateReleaseBody(tag: string, body: string, rootDir: string): Promise<void> {
390 await withReleaseToken(() => runArgsAsync(['gh', 'release', 'edit', tag, '--notes', body], { cwd: rootDir }));
391}
392
393/** Finalize a draft release (remove draft status) */
394export async function finalizeRelease(tag: string, rootDir: string): Promise<void> {

Callers 2

runPublishFlowFunction · 0.90
finalizeSupersededDraftsFunction · 0.85

Calls 2

runArgsAsyncFunction · 0.90
withReleaseTokenFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…