Versions Compared

Key

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

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

...

Importing data from CSV file

The Repeating Issues add-on, allows you to import repeating issues details from a comma-separated value (CSV) file. CSV files are text files representing tabulated data and are supported by most applications that handle tabulated data (for e.g. Microsoft Excel, databases, etc.).

...

PropertyDescriptionValues
rRule

Recurrence rule defined as RFC 2445.

Together with startDate and actionParams.scheduleType this will define when repeating will trigger.

Any string representing rule in RFC 2445.

Examples

  • INTERVAL=5;FREQ=MONTHLY;BYMONTHDAY=1
  • INTERVAL=1;FREQ=DAILY
  • INTERVAL=3;FREQ=MONTHLY;UNTIL=20180726T220000Z;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1
Info

Repeating Issues add-on supports only DAILY, WEEKLY, MONTHLY, and YEARLY values for RFC 2445 FREQ field


actionAction that should be repeated.

One of:

  • CloneIssue - repeats the source issue cloning
  • CreateSubTaskIssue - repeats the sub-task creation in source issue
  • DoIssueWorkflow - repeats the workflow transition on source issue
startDateDefines the start date and time relative to which subsequent occurrences are calculated on the recurrence rule.

A full date and time without millis, separated by a 'T' (yyyy-MM-dd'T'HH:mm:ssZZ) in Jira default time zone.

Example:

  • 2018-06-27T13:32:00+02:00
actionParams.summarySummary that will be set to new cloned issue.

This field can have parameters like ${repeatingDate} - for details please follow Available variables in repeating action param strings
Any string.
actionParams.reporterUser which will be set as reporter of new cloned issue or new created sub-task.

Jira "username" as string.

Example:

  • admin
actionParams.assigneeUser which will be set as assignee of new cloned issue or new created sub-task.

Jira "username" as string.

Example:

  • admin
Info

Special values:

  • "-1" - automatic assignee
  • "" (empty string) - unassigned


actionParams.scheduleTypeDefines which issue date should be repeated: issue create date or issue due date. This is equivalent for  "Repeat for" field in UI form. See Scheduling Clone Issue action for details.

One of:

  • issueCreateDate - repeat for issue create date

  • issueDueDate - repeats for issue due date

actionParams.issueDurationThe number of working days between new cloned issue created date and due date.

Please read how to configure non-working days.
Positive integer value.
actionParams.cloneLinksWhen true - all source issue links (excluding Clone link) will be cloned to new cloned issue.Boolean value: true/false.
actionParams.cloneSubTasksWhen true - all sub-tasks from source issue will be cloned as sub-tasks to new cloned issue.Boolean value: true/false.
actionParams.cloneSprintValuesWhen true and Jira Agile is available - sprint field values from source issue will be also cloned to new cloned issue.Boolean value: true/false.
actionParams.preventAutoWatchWhen true - the creator will not be notified of any changes to new cloned issue. This is equivalent for  "Remove me from watchers" field in UI form. See Scheduling Clone Issue action for details.Boolean value: true/false.
actionParams.notifyWatchersWhen true - watchers of new created issue will be notified via email. See Email notifications.Boolean value: true/false.
actionParams.issuetypeIssue type of new created sub-task.Project issue type id as string.
actionParams.componentsProject components which will be set to new sub-task issue.List of project component id as string.
actionParams.descriptionDescription that will be set to new sub-task issue.

This field can have parameters like ${repeatingDate} - for details please follow Available tokens in action param strings
Any string.
actionParams.workflowIdThe transition of current workflow related with issue project that should be executed.Id of workflow transition as string.

...