Hello everyone,
I want to add a validatior to a transition, which checks the statuses of "Development" parameters.
I don't know how to do that with Scripted (Groovy) Validator (JMWE add-on).
I attached a picture with an example (statuses of all Pull Requests should be merged, but for the tested issue, it returns wrong result)
How can I write the script?
Any help would be appreciated,
Thank you.
@Parvaneh Zand you can try something like this for JMWE:
issue.get("Development").summaryBean.summary.pullrequest.overall.details.mergedCount != 0
it return true if any merged request exist on issue provided.
Also ensure, that "Development" customfield exist and has exact name.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you try to test just
issue.get("Development").pullrequest
to see what the value looks like? The structure of the value of the Development field is actually fairly complex, and also partially dependent on the development info provider (app).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.