Reputation: 23
I have Jenkins polling Subversion for changes, but I do not want a commit to trigger a build when the commit message is "Do not build". I have written "Do not build" in the Excluded Messages region, but commits with this message are still triggering. Is there some sort of formatting (i.e. quotes around the message) that I need for the exclusion to work?
Excluded Messages region in Jenkins: Here
Commit Message I am using: Here
Upvotes: 2
Views: 725
Reputation: 8164
There must not be any extra space characters before of after the entry in the "Excluded Messages" field. Otherwise, those characters will be part of the pattern, and they must be part of the commit messages as well then.
Upvotes: 2