Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion lib/prepare_release.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,11 @@ export default class ReleasePreparation extends Session {
return this.prepareSecurity();
}

if (this.runBranchDiff) {
const runBranchDiff = await cli.prompt(
'Do you want to check if any additional commits could be backported ' +
'(recommended except for Maintenance releases)?',
{ defaultAnswer: this.runBranchDiff });
if (runBranchDiff) {
// TODO: UPDATE re-use
// Check the branch diff to determine if the releaser
// wants to backport any more commits before proceeding.
Expand Down
Loading