(prBranch: string | null)
| 1240 | }); |
| 1241 | try { |
| 1242 | const built = await buildChannelReleasePlan(stablePlan, channel, packages, rootDir, { forDisplay: true }); |
| 1243 | releases = built.plan.releases; |
| 1244 | } catch { |
| 1245 | releases = stablePlan.releases.map((r) => ({ ...r, newVersion: `${r.newVersion}-${channel.preid}.?` })); |
| 1246 | } |
| 1247 | } |
| 1248 | |
| 1249 | const output = { |
| 1250 | mode, |
| 1251 | channel: channel.name, |
| 1252 | bumpFiles: bumpFiles.map((bf) => ({ |
| 1253 | id: bf.id, |
no test coverage detected
searching dependent graphs…