File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -190,14 +190,14 @@ export default class Publish {
190190
191191 // confirm no changes
192192 if ( ! this . #changelog. hasChanges ) {
193- res = await confirm ( "No changes since the parent release.\nContinue the release process?" , [ "yes" , "[no]" ] ) ;
193+ res = await confirm ( "No changes since the previous release.\nContinue the release process?" , [ "yes" , "[no]" ] ) ;
194194
195195 if ( res !== "yes" ) return result ( [ 400 , "Terminated" ] ) ;
196196 }
197197
198198 // confirm no notable changes
199199 else if ( ! this . #yes && ! this . #changelog. hasNotableChanges ) {
200- res = await confirm ( "No notable changes since the parent release.\nContinue the release process?" , [ "yes" , "[no]" ] ) ;
200+ res = await confirm ( "No notable changes since the previous release.\nContinue the release process?" , [ "yes" , "[no]" ] ) ;
201201
202202 if ( res !== "yes" ) return result ( [ 400 , "Terminated" ] ) ;
203203 }
You can’t perform that action at this time.
0 commit comments