Hi Community.
What I want to do basically is when the first subtask is moved from To Do to In Progress the parent ticket (story) be updated automatically as well to in progress
Scenario 1
Scenario 2
Sharing server version - (v7.13.2#713002-sha1:c794ca7:node4)
Note- I don't have JSU plugin.
By default this functionality in there in jira.
Either You have to develop plugin by your self for this functionality using the Jira API and Plugin Modules. If you have programming knowledge then its easy.
In this you need to create Postfunciton which will run on subtask workflow and transits the parent issue base on subtask status
Or You need go for plugin either JSU/JMWE/Script Runner
Accept the answer if it helps
Thank you response.
I have JMWE plugin. Can you please share the steps how can configured the post function.
Thanks
Rahul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For Scenario 1
1. You need to go to the In progress transaction post function of workflow which is attached to the Subtask
2. Select the Transition Parent Issue Post-function
3. there you can select the in-progress transaction for parent issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For Scenario 2:
You can add same postfunciton on Done transaction of subtask to trigger Done transaction for parent issue.
Here you need to add condition i.e. If all subtasks under a story get completed then and only then trigger the transaction for parent.
This you have to do in groovy script.
@David Fischer can help you with condition
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually, I usually don't use Conditional Execution for that second case but instead add a Linked Issue Status Condition on the parent transition to Done, so that even manually you cannot close the parent issue if not all sub-tasks are closed.
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.
Hi @Sachin Dhamale @David Fischer
I have follow mentioned steps but Scenario 2 not working for JMWE.
Can you please help for Scenario 2.
When one of the child issued is moved from ON HOLD to IN PROCESS, the parent issue must be moved to IN PROCESS.
example in JSU have linking issue. what is for JMWE.
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.
Hi David,
Requirement-> If all subtasks under a story get completed and marked as "Done", the parent status should automatically change to "Done"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Rahul Ingle
the conditional execution script should be:
parentIssue.subtasks.every{it.get("status").name == "Done"}
And you'll need to make sure to move the post-function to the bottom of the list of post-function on the transition.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sachin Dhamale , @Rahul Ingle , @David Fischer
What if we do not know coding and also do not have any third party app then what we need to do in this. Guys can you tell step by step that how can i have third party app and how can i do this thing in my JIRA - How to change parent's status Automatically?
My scenarios - If any sub-task status has change from TO-DO status to IN PROGRESS the automatically parent status should change in Development.
If any subtask is remained to close then should not allow to close the parent's status also.
If you can help me.
Thanks in Advance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have the same scenario and looking for some help. Were you able to achieve it?
I my case, the hierarchy is Feature --> Epic --> Story --> Subtask
Scenario 1
Scenario 2
Regards, Sai.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You will need a third-party app such as JMWE or JSU (among others) for that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
I have JMWE plugin. Can you please share the steps how can configured the post function.
Thanks
Rahul
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
Thank you response.
I have JMWE plugin. Can you please share the steps how can configured the post function.
Thanks
Rahul
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.