We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfa9c92 commit 391487bCopy full SHA for 391487b
lib/prepare_release.js
@@ -167,7 +167,11 @@ export default class ReleasePreparation extends Session {
167
return this.prepareSecurity();
168
}
169
170
- if (this.runBranchDiff) {
+ const runBranchDiff = await cli.prompt(
171
+ 'Do you want to check if any additional commits could be backported ' +
172
+ '(recommended except for Maintenance releases)?',
173
+ { defaultAnswer: this.runBranchDiff });
174
+ if (runBranchDiff) {
175
// TODO: UPDATE re-use
176
// Check the branch diff to determine if the releaser
177
// wants to backport any more commits before proceeding.
0 commit comments