Hello,
I hope you are doing well!
I would like to ask if is there a possibility to not created childes of an epic/parent if the parent is done.
For example I have an closed epic, I created a story, and selected the parent this epic.
-> the child is created(story) and attached to this epic.
I need to not be possible to select or create a child if the epic is done!
Regards,
David.
Hello,
I hope you are doing well!
I have found a simple way: Parent validator in my list was. And just only added the states that the parent should be!
Regards,
David
Hi @David Plesu Good day!
Please note that you can achieve this use case using JMWE's Build-your-own (scripted) Validator.
Refere this article : https://appfire.atlassian.net/wiki/spaces/_/pages/466226183?atlOrigin=eyJpIjoiNzU0MTk5ZThhMjg3NDAwYWIxYTgyYmQ2ZWNiODVjZDAiLCJwIjoiYyJ9
Sample code:
(issue.issueType.name != "Story") || (issue.issueType.name == "Story" && (!! issue.epic && !! issue.epic.key) && (! issue.epic.resolution || ! issue.epic.name))
The code will validate as follows:
Please note that in the provided code, "closed" is considered when the resolution is not empty, and you can customize the Jira expression further based on requirements.
BTW, I'm from Appfire, the vendor of JMWE app and above provided configuration is one of the solution that can be achieved with the help of JMWE
I hope this helps you!
Thanks,
Avinash
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Avinash Bhagawati _Appfire_
As a reminder...When recommending a marketplace vendor product, please ensure you disclose your affiliation to that vendor in your post wording. For more information about this please see:
Atlassian Community online guidelines | Marketplace + Solution Partners | App Central
Kind regards,
Bill
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.