We have a shop that builds three releases a week. Instead of creating seperate tickets we use one ticket and merge code over three branches. to track to make sure we have not missed a build, I have a query that compares the target release, a custom field, with the fixedin field. Currently we have two target releases 3.2 and 3.3. Needless to say since we are building weekly we bump up the maintenance field value each time. (i.e. 3.3.0, 3.3.1, 3.3..2, etc.)
I noticied a pecular case when I was looking for the following
"Target Release" = 3.2 AND fixversion not in versionMatch("3.2.*")
that I had a JIRA ticket that has a target release of 3.2 but had a fixedin version of 3.3.2 . This ticket did not get selected because it pattern match to the 3.2 in 3.3.2.
Any suggestions to overcome this?
Does versionmatch respect typical regex rules? I think ^ is used to indicate the beginning of the string in typical regex, so your regex would be "^3.2*"
I don't have ScriptRunner on my install so I can't test it out; sorry.
Also, I think your real issue is with the versionMatch function, not the fixVersion field. You might have luck checking with the folks who control versionMatch?
https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner/cloud/overview
Thanks for the quick response. I tried your suggestion and it worked perfectly.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.