Automatically create a new Task when story is done script Runner

John River October 19, 2017

Hi All,

I have the following issue types:

  • Story
  • Task

The story and the Task have two different workflows.  When the story transitions to "Done" I would like the following to happen:

  • Automatically create an Issue of Type "Task"
  • Link the newly Created Issue type to the Story
  • Populate the summary of the new Task with the Story Issue ID

This is proving to be very challenging for me, please assist.  I am using script Runner

1 answer

1 accepted

1 vote
Answer accepted
Mizan
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.
October 19, 2017

Did you try the "Clone issue and link" post function by script runner ?

John River October 19, 2017

Hi Mizan,

I'm new to groovy and scriptrunner. I'm not sure how to do it

Mizan
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.
October 19, 2017

On the "Done" transition of your Story workflow add a post function

select Script post function then Add

select Clone issues and links

select target issue type as Task

In additional actions enter the below code

issue.summary = sourceIssue.key+': ' + sourceIssue.summary

select issue type link direction as relates to (first one) (You can create your own link types as well)

Add then publish workflow

Test it out by transitioning "Done" of the story

Let me know how it goes 

John River October 19, 2017

You are the greatest :)

Mizan
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.
October 19, 2017

Happy to help :) thank you

Platon Borodatyi February 28, 2018

Hi Mizan,

Many thanks for your advice :)

Unfortunately, the code doesn't work for me, could you please advice what could be the reason? - thanks, Platon

 

Also, for all newbies like me, who will read this article:

To see the "Script post function"  in Post Function, you need to set up plugin:

ScriptRunner - $5 per month.

Thanks, Platon

Suggest an answer

Log in or Sign up to answer