Hi,
Consider this stage step with a body and an input step.
stage ('Deploy') {
input 'Ready to deploy?'
...
}
If the user clicks Abort on the manual input step the stage is marked as failed.
If the input step is moved outside of the stage then the dialog doesn't come up when the user hovers overs the stage so I want to keep it there.
The old-style stage without a body would have been marked as Aborted:
stage 'Deploy'
input 'Ready to deploy?'
(if the user Aborts, the stage is rightly marked as Aborted).
Is there a way to make this work with the new stage format?
Cheers
Lionel.