| 96 | } |
| 97 | |
| 98 | export interface ChannelConfig { |
| 99 | /** Branch that triggers this channel (required) */ |
| 100 | branch: string; |
| 101 | /** Version suffix (preid), e.g. "rc" → 1.2.0-rc.0. Defaults to the channel name. */ |
| 102 | preid?: string; |
| 103 | /** npm dist-tag for publishes. Defaults to the channel name. */ |
| 104 | tag?: string; |
| 105 | /** Release PR overrides for this channel */ |
| 106 | versionPr?: { |
| 107 | title?: string; |
| 108 | branch?: string; |
| 109 | /** Enable auto-merge on the release PR */ |
| 110 | automerge?: boolean; |
| 111 | }; |
| 112 | } |
| 113 | |
| 114 | export interface SnapshotConfig { |
| 115 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…