Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The idea here is pretty simple. Add up all the values of the child custom fields and display it in an Epic. We can do so in three ways:

...

Code Block
JFieldChange [] changes = lastIssueChanges(key);
 
if (changes[size(changes)-1].field == "estimate") {
    string epic = #{Epic Link};
    %epic%.estimate += #{Epic Link};
}

Live Fields

Use Live Fields as a listener. Your scrips would look something like the following. In the main script:

...