Hello Team,
i am trying to setup a scripted validator at the time of jira issue creation, where issue type is Task it should allow users to choose Priority field only as High, Medium and Low. where as when the issue type is selected as But the priority field should only to be choosen as Blocker, Critical, Major and Minor.
I tried adding the below script but it is failing to recognize any of the provided field values in the create issue.
import com.opensymphony.workflow.WorkflowException
// Define allowed priorities for each issue type
def allowedPrioritiesMap = [
"Bug": ["Blocker", "Critical", "Major", "Minor"],
"Task": ["High", "Medium", "Low"]
]
def issueType = issue.getIssueType()?.name
def selectedPriority = issue.getPriority()?.name
if (!allowedPrioritiesMap.containsKey(issueType) || !allowedPrioritiesMap[issueType].contains(selectedPriority)) {
// If the selected priority is not allowed for the issue type, throw a WorkflowException.
throw new WorkflowException("Invalid priority selected for issue type '$issueType'. Allowed priorities are: ${allowedPrioritiesMap[issueType].join(', ')}")
} else {
log.info("Issue type: $issueType, Priority: $selectedPriority - Validation passed.")
}
How can i resolve the issue.
Please can you advise a solution.
Thanks and Regards,
Sreedevi
Assuming you are creating a Custom Scripted Validator, you need throw InvalidInputException, as it says in the helptext and described here: https://docs.adaptavist.com/sr4js/latest/features/workflows/validators/custom-validators
With WorkflowException, it will not stop the issue from being created, but it will with InvalidInputException such as this:
Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.
Learn moreOnline 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.