You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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.