webhook-testing/Jenkinsfile

11 lines
151 B
Plaintext
Raw Normal View History

2022-02-16 21:32:32 +00:00
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}