Info |
---|
For exemplification purposes, let’s use 5 branches: |
We need to trigger a build only from two branches: master, develop
If we leave the field "Branch Options" with the parameter "Build all" - it will build from all branches.
If we leave the field "Branch Options" with the parameter "Build from" - master - it will trigger to build.
Jenkins from the master branch, same with develop.How
There are two ways how to limit the trigger to be triggered only from 2 branches
...
master, develop
master develop
origin/master, origin/develop
...
:
Select “Build from“ and enter branch names separated by white space:
...
"master develop"
Select “Build RegExp“ and enter regexp based expression:
...
"master|develop"