Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

[Resolved]

Przemyslaw Stepien January 10, 2019

I faced strange behavior of Jira.

I use Kanban board with stories in backlog. Some stories have sub-tasks already.

If I drag and drop story with sub-tasks (or right click -> send to sprint x), only story is being moved, sub-tasks stay in backlog.

Can I have sub-tasks firmly connected to a story, so that when I move story, I move subtasks as well?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

0 votes
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.
January 10, 2019

Hello,

You would need a plugin for it.

For example, you could use the Power Scripts plugin:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could add the SIL post function for the parent task workflow, which is leading to the Done status, with a code like this:

string[] keys = subtasks(key);

for(string k in keys) {
   autotransition("Done Transition", k)
}

  

TAGS
AUG Leaders

Atlassian Community Events