Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

workflow validator on Jira create task issue should show only three values of Priority field

Sreedevi Raman Pisharody January 16, 2024

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

1 answer

0 votes
Radek Dostál
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 16, 2024

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:

wf.png

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
SERVER
TAGS
atlassian, loom, AI, meeting recording, community

[NEW] Record your meetings with Loom

Welcome to great meetings, with less work. Automatically record, summarize, and share instant recaps of your meetings with Loom AI.

Learn more
AUG Leaders

Atlassian Community Events