Reputation: 2344
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.
Upvotes: 2
Views: 1168
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