Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Jobs waiting for input: add timeout ; approver list

Angelika Ehlers edited this page Oct 2, 2017 · 7 revisions

Issue:

Jobs waiting for input.

Solution: Wrap the input in a timeout: To permit only specific users to promote set the submitter list (comma separated list of user ids).

Example:

stage('deploy-test') {

timeout(time: 10, unit: 'MINUTES') { input message: "Deployment to test?", submitter: 'test' }

}

Clone this wiki locally