I am using JIRA webhook to trigger jobs in Jenkins, so that whenever the status of the issue in JIRA project changes to In Progress it should trigger the build in Jenkins. In Jenkins I have configured the job to use JIRA Field Matcher and following parameters:
JIRA field ID:status
Compare new value:In Progress
Compare old value:To Do,In Review
I have used both comma(,) and semicolon(;) as delimiter, but it is not working. However when I am using only single value like Compare old value:To Do or Compare old value:In Review, it is working fine. How can I pass multiple values for a parameter?
Thanks in advance!!