Sync Parent's FixVersion to Subtasks FixVersion

Vivian Escalante February 20, 2018

Hello all, 

I'd like to sync the fix version of the subtask whenever the fix version of the parent is updated, so a listener. Not exactly sure where to start. Any help would be awesome. Thanks!

2 answers

0 votes
Pavel Antonenko June 17, 2021

It's possible to do right now with Automation which is available for all Cloud Instances for free and out-of-the-box

 

Screen Shot 2021-06-17 at 12.38.38.png

Fabian Lim
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
August 19, 2021

Here is a video tutorial on how to do it as well via jira automation: https://youtu.be/DcPYrw-Puus

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.
February 21, 2018

You would need a plugin for it like Power Scripts Or ScriptRunner. You would need to write a listener on Update Issue event. then if you have Power Scripts your code would look like this.

string[] subtasks = subtasks(key);

for(string subtask in subtasks) { 

   %subtask%.fixVersions = fixVersions;

}
Vivian Escalante February 21, 2018

I got it. Thanks anyways. 

 

Shawna Schnorr March 19, 2019

@Vivian Escalante What solution did you come up with? 

Suggest an answer

Log in or Sign up to answer