Is there a way to have this kind of function: when user change issue status from Open to In Progress, check if the Need UAT field is yes, if it's yes, then Test Phase field is required, and if it's no, then the Test Phase field is not required? Please advise on this. Thank you.
Hi @Jason Liu,
Your requirement can be easily achieved using Field Required Validator provided by Jira Misc Workflow Extensions (JMWE) app (Thanks for mentioning our JMWE app, @Sebastian Krzewiński! )
steps to achieve this:
issue.get("customfield_12345") == "Yes"
Replace 12345 with the ID of the"Need UAT" field. The above script assumes "Need UAT' is a Select List (Single Choice) field. Let me know if the field type is different.
I hope this helps!
By the way, I'm part of JMWE (Appfire) support team. If you've any questions on this or need help using the JMWE app, please reach out to us via our Appfire Support Portal.
Regards,
Suprija | Appfire
Hi Suprija, I check in our workflow validator and I didn't see checkbox "Conditional validation". Please see the screen shots:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jason Liu
Out of the box jira don't have feature like you described. You need to use add-on that extend workflow capabilities. Please check what apps you have on your instance.
This you can achieve with Script runner or JMWE or JSU app.
Regards,
Seba
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.