Files
apigateway-ocp/Jenkinsfile
2025-11-13 23:47:20 +08:00

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."
}
}
}
}