1. I have a Change Request which has 5 TASKS (Custom issue type) under it.
2. The Change Request is in "EVALUATION" status.
3. It should move to "INTERNAL REVIEW" status automatically when all the 5 TASKS become DONE
How can I achieve this using JMWE.
I know there are Transition linked issues, Translation parent issue etc. But I need to check for DONE of all 5 tasks under it. They are not SUB TASKS, but TASKS.
Any help will be greatly appreciated.
Hello @Pangeel Shubha
For the JMWE plugin, you can use the following post-function in the Task workflow.
https://innovalog.atlassian.net/wiki/spaces/JMWE/pages/68878506/Transition+linked+issues
And in the Change request workflow add a condition now to make the transition unless all linked tasks are done. IN this was every task will fire the workflow transition but the Change request will not transition due to a condition and it will only transition only when all the 5 tasks are done and the transition on Change request is triggered from the final Task
you should be able to us a validation somewhat as below.
project = A and status = "what ever" and issueFunction in linkedIssuesOf("Status = Done")
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.