19 lines
493 B
Groovy
19 lines
493 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Question') {
|
|
input {
|
|
message "Should we continue?"
|
|
ok "Yes, we should."
|
|
submitter "alice,bob"
|
|
parameters {
|
|
string(name: 'PERSON', defaultValue: 'Mr Jenkins', description: 'Who should I say hello to?')
|
|
}
|
|
}
|
|
steps {
|
|
echo "Hello, ${PERSON}, nice to meet you."
|
|
}
|
|
}
|
|
}
|
|
}
|