Hi,
Want to use below condition in validators but could not find any options. Can you please suggest how to achieve the same. Note: Conditions can be used but the issue is it does not show any error messages to the user.
Transition from "Ready for Dev" --> "In Dev" only IF "Dev Estimation > 0"
If your project is a company-managed project, you can use an app providing Jira expression-based validator. There are several options available on the Atlassian marketplace.
We've developed the Jira Expression Validator as part of the free Workflow Building Blocks for Jira app. Feel free to give it a try! The Jira expression for your case will be similar to:
issue.customfield_12345 != null && issue.customfield_12345 > 0
You need to change the ID of the field. After "issue." start typing "Dev Estimation", editor will suggest the correct field.
I hope it will help.
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sabyasachi Samal ,
The default validators in Jira (Service Management) Cloud do not offer this option. Apps such as Jira Misc Workflow Extensions do offer advanced conditions and validators that provide messages to the user.
Without buying any App, you can implement a workaround, using Automation. You can create a rule that will check AFTER the transition has already occurred, if the issue meets your condition. If not, it will transition the issue back to its previous status and post a comment with explanation.
Kind regards, Rik
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Rik de Valk Thanks for your response. Currently I am not looking for a paid app for this. Even though the workaround will work but it will create confusion to the Dev team.
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.