We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6eb478f commit 974fd45Copy full SHA for 974fd45
1 file changed
Jenkinsfile-input
@@ -14,12 +14,16 @@ pipeline {
14
parallel {
15
stage('channel-1'){
16
steps{
17
- echo 'd'
+ input message: 'Please input your age!', ok: 'Confirm',
18
+ parameters: [string(defaultValue: '18',
19
+ description: 'Just a joke.', name: 'age', trim: true)]
20
}
21
22
stage('channel-2'){
23
24
+ input message: 'Please input your weight!', ok: 'Confirm',
25
+ parameters: [string(defaultValue: '50',
26
+ description: 'Just a joke.', name: 'weight', trim: true)]
27
28
29
0 commit comments