(config: BumpyConfig, channel: ResolvedChannel)
| 1164 | } |
| 1165 | |
| 1166 | function buildChannelPrPreamble(config: BumpyConfig, channel: ResolvedChannel): string { |
| 1167 | return [ |
| 1168 | config.versionPr.preamble, |
| 1169 | '', |
| 1170 | `> 🔀 **Prerelease channel \`${channel.name}\`** — merging this PR publishes the versions below to the \`@${channel.tag}\` dist-tag.`, |
| 1171 | `> The diff only moves bump files into \`.bumpy/${channel.name}/\` — prerelease versions are derived at publish time and never committed. The \`.x\` counter is assigned from the registry at publish time.`, |
| 1172 | ].join('\n'); |
| 1173 | } |
| 1174 | |
| 1175 | /** Enable GitHub auto-merge on a PR, trying the available merge methods in order */ |
| 1176 | async function enableAutoMerge(rootDir: string, prNumber: string): Promise<void> { |
no outgoing calls
no test coverage detected
searching dependent graphs…