first commit
This commit is contained in:
18
Jenkinsfile
vendored
Normal file
18
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
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."
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user