Forums

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

Workflow validator to enforce Epics with Done status

Etai Leers
Contributor
July 6, 2023

I got an issue type on a higher level then the "Epic" in the issue hierarchy.

This issue type may contain a few child Epics.
I would like to create a workflow validator (can be done using ScriptRunner) to enforce all the child Epics to be in Done status category, in order to move the parent issue to Done status.

I tried using the following script validator, but it didn't worked:

issue.epics.every(child => child.status.name == 'Done' || child.status.name == 'Feature Validation')

Anyone know how to make this validator work?

2 answers

1 accepted

0 votes
Answer accepted
Ram Kumar Aravindakshan _Adaptavist_
Community Champion
August 2, 2023

Hi @Etai Leers

Unfortunately, this is not doable at the moment.

I suggest looking through this Developer Community Discussion for more information.

However, if your Epic issues are not linked to the Initiative as Child issues, and instead standard link like is blocked by is, then you can try something like this:-

issue.issueType.name == 'Initiative' && issue.links.filter(L=> L.linkedIssue.issueType.name== "Epic").length ==
( issue.links.filter(issue => issue.outwardIssue.status.name == 'Done').length +
 issue.links.filter(issue => issue.inwardIssue.status.name == 'Done').length
)

The alternative I can suggest would be to go through this Community Discussion.

I hope this helps to answer your question. :-)

Thank you and Kind regards,

Ram

0 votes
Maciej Dudziak _Forgappify_
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.
May 17, 2024

Hi @Etai Leers

For this case we've developed the Linked Issues Validator available as part of the Workflow Building Blocks for Jira app. Starting today, it can also be used to test the children of Initiatives or other higher-level issue types. 

Here’s an example of how it looks:

community_05.17_children_of_initiative.png

I would appreciate it if you could give it a try.

Cheers

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events