Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

How to generate tasks within an epic with Scriptrunner

Emelie
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
June 19, 2019

Hi,

I need help with how I create a Post-function for a project. I am trying to create a post-function that creates and clones an issue. What I want, is that when I create an Epic in the project, that a number of tasks should be generated within that Epic (without me having to create them manually).

What I've tried so far is to create the clone and link post-function, but changing the issue summary to another name, and it kind of worked. Only that instead of creating one task when I created an Epic, 245 identical tasks were created. I don't really want to clone the Epic, but generate tasks automatically, but I figured the clone and link post function could be used, doing a workaround just giving the issue a new issue summary... However then the 245 new issues were created... So, how do I do this in the easiest way? I am not a coder or super technical, but appreciate any help. Thank you!

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Peter-Dave Sheehan
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.
June 21, 2019

Your task must be using the same workflow as the epic. 

So that the epic creation triggered the creation of a task, which triggered the creation of a task which...

So in your Condition, put 

originalIssue.issueType.name == 'Epic'

 Target Issue Type: select Task

In additional issue actions, you have to link your tasks to the epic

def cf = customFieldManager.getCustomFieldObjects(issue).find {it.name == 'Epic Link'}
issue.setCustomFieldValue(cf, sourceIssue.key )

 Leave issue Link Type/Direction empty

TAGS
AUG Leaders

Atlassian Community Events