I have 2 worklfows:
1- workflow for issue type "subtask"
2- workflow for issue type "task, user story, bug, epic"
I would like that
- when subtask are moved from TO DO -> IN PROGRESS for example also the issue parent status is set "IN PROGRESS"
-when I move it from IN PROGRESS -> DONE to update issue parent status in "DONE" in case all subtasks are moved to DONE
- when I move one subtask from DONE -> IN PROGRESS or DONE -> TO DO the parent issue status updates to TO DO or IN PROGRESS.
I would like to achieve this in without any extra addon/plugin, with the basic features/setup/configurations available in Jira Cloud.
Hello,
You would need an add-on for it. For example, the Power Scripts add-on:
You could write post functions for each transition leading from the To Do status to In Progress, In Progress to Done, Done to In Progress and so on.
For example, for the To Do to In Progress post function would look like this:
if (isNotNull(parent)) {
autotransition(
"In Progress Transition"
, parent
);
}
"In Progress Transition" is the name of the transition leading from the To Do status to In Progress.
You can read more about post functions here:
https://confluence.cprime.io/display/JJUPIN/Customizing+workflows?src=contextnavpagetreemode
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is not possible without an add-on.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online 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.