| 158 | } |
| 159 | |
| 160 | export interface DraftReleaseInfo { |
| 161 | tag: string; |
| 162 | title: string; |
| 163 | body: string; |
| 164 | isDraft: boolean; |
| 165 | metadata: ReleaseMetadata | null; |
| 166 | } |
| 167 | |
| 168 | /** Parse bumpy metadata from a release body */ |
| 169 | export function parseReleaseMetadata(body: string): ReleaseMetadata | null { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…