(tag: string, rootDir: string)
| 397 | |
| 398 | /** Delete a GitHub release */ |
| 399 | export async function deleteRelease(tag: string, rootDir: string): Promise<void> { |
| 400 | await withReleaseToken(() => runArgsAsync(['gh', 'release', 'delete', tag, '--yes'], { cwd: rootDir })); |
| 401 | } |
| 402 | |
| 403 | /** Find draft releases for a package (by name prefix) that are older than the current version */ |
| 404 | export async function findStaleDraftReleases( |
nothing calls this directly
no test coverage detected
searching dependent graphs…