Forums

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

Can we have sub-task assignee automatically copied to parent story if parent is unassigned?

nghoffman April 23, 2019

We create a story with multiple subtasks.  I assign a subtask to myself.  We would like this to automatically copy the subtask assignee to the parent story, if the parent story is current unassigned.  So, the first person assigned to a subtask would also get assigned to the currently-unassigned parent story.

1 answer

1 accepted

0 votes
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, ScriptsRunner, Automation for Jira.

If you choose the Power Scripts app, then you could write a listener for the Issue Assigned event with a code like this:

if (issueType == "Subtask" and isNull(parent.assignee)) {

  parent.assignee = assignee;

}

Suggest an answer

Log in or Sign up to answer