mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-25 09:05:50 +00:00
added triggers
This commit is contained in:
parent
07a2b55ea9
commit
d171f80a87
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'JDK-11' }
|
agent { label 'JDK-11' }
|
||||||
stages {
|
stages {
|
||||||
|
triggers {
|
||||||
|
pollSCM('* * * * *')
|
||||||
|
}
|
||||||
parameters {
|
parameters {
|
||||||
string(name: 'MAVEN_GOAL', defaultValue: 'mvn package', description: 'enter maven goal')
|
string(name: 'MAVEN_GOAL', defaultValue: 'mvn package', description: 'enter maven goal')
|
||||||
choice(name: 'BRANCH', choices: ['master', 'main', 'three'], description: 'select one')
|
choice(name: 'BRANCH', choices: ['master', 'main', 'three'], description: 'select one')
|
||||||
|
|
Loading…
Reference in a new issue