Complete the code to add a manual approval input step in a Jenkins pipeline.
input message: '[1]'
The input step requires a message to prompt the user for manual approval. 'Proceed with deployment?' is a clear prompt.
Complete the code to add a manual approval step with a submitter restriction.
input message: 'Approve deployment?', submitter: '[1]'
The submitter restricts who can approve. 'admin' is commonly used for approval rights.
Fix the error in the input step syntax for manual approval.
input message: 'Approve?', [1]: 'admin'
The correct keyword to restrict who can approve is submitter (singular).
Fill both blanks to create an input step with a message and timeout.
input message: '[1]', timeout: [2]
The message should clearly ask for confirmation. Timeout is set in minutes; 30 is a common choice.
Fill all three blanks to create an input step with message, submitter, and timeout.
input message: '[1]', submitter: '[2]', timeout: [3]
The message asks for deployment approval, submitter restricts to 'admin', and timeout is 15 minutes.