stecog
stecog

Reputation: 2344

Build job jenkins at specific commit to bitbucket

i need start a build on Jenkins only when i push and commit with specific message to bitbucket. Actually work with webhooks but every push, the build starting. I have tried with git plugin and "Additional Behaviours" but not sure what is possible.

Git configuration project page

Upvotes: 2

Views: 1168

Answers (1)

ISanych
ISanych

Reputation: 22680

It is a weird requirement. You could create filter job which will be executed at each commit, check commit message and trigger your job only when necessary.

P.S. Found Commit Message Trigger Plugin

Upvotes: 4

Related Questions