Can we have parent story status change to IN PROGRESS when any subtask is changed to IN PROGRESS?

nghoffman April 23, 2019

We create a story with subtasks, and all have a status of TODO.  When we drag a subtask from the To Do column to the In Development column of the story board, the subtask's status changes from TODO to IN PROGRESS.  We would like the parent story to automatically change from TODO to IN PROGRESS as well.

1 answer

1 accepted

1 vote
Answer accepted
Alexey Matveev
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.
April 23, 2019

Hello,

You would need an app for it. There are multiple apps available: Power Scripts, ScriptRunner, Automation for Jira.

If you choose the Power Scripts app, then you can write a listener with a code like this:

if (status == "In Progress" and issueType == "Subtask") {

   autotransition("In Progress", parent);

}
nghoffman April 25, 2019

Thanks!

Suggest an answer

Log in or Sign up to answer