Versions Compared

Key

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


Info

Available since 1.0.0 version

Repeating actions allow to provide text values for Jira system fields (e.g. summary and description) and custom fields defined in Jira instance. For all of these fields, regardless of their type, the add-on uses simple text input in form. This is because the add-on accept The Velocity Template Language (VTL) which provide the easiest, simplest, and cleanest way to incorporate dynamic content for field values.

...

  • copy values from repeating source issue, e.g ${sourceIssue.summary}
  • calculate dates, e.g. ${repeating.date.addDays(2).withHours(10).withMinutes(0)
  • calculate any values using conditions, e.g. #if( ${repeating.date.month} == ' 10")it's true!#{else}it's not!#end
  • copy current custom field value (for custom field inputs only): $!sourceIssue.getCustomFieldValue($this)

...