| 5 | |
| 6 | /** A channel config with all defaults applied */ |
| 7 | export interface ResolvedChannel { |
| 8 | name: string; |
| 9 | branch: string; |
| 10 | preid: string; |
| 11 | tag: string; |
| 12 | versionPr: { |
| 13 | title: string; |
| 14 | branch: string; |
| 15 | automerge: boolean; |
| 16 | }; |
| 17 | } |
| 18 | |
| 19 | /** Channel names that would collide with reserved `.bumpy/` entries */ |
| 20 | const RESERVED_CHANNEL_NAMES = new Set(['README', 'README.md']); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…