Reputation: 1221
I have the following Gitlab + Jenkins setup:
I want Jenkins to do the following:
Is something like this possible in Jenkins? I know Git plugin has an option called "Checkout to a Specific local Branch", but I am not entirely sure if this does what I want.
Any help/input regarding this issue would be highly appreciated. Thanks and Cheers :)
Upvotes: 5
Views: 2058
Reputation: 8674
There is a "merge before build" action in the Git plugin. It only merges on the build machine — it doesn't push the merge back to the origin repository.
Upvotes: 8