Create Multiple Sub-Tasks Repetitively

Kirk Eisele December 11, 2018

We have tasks that create work for multiple services. Is there a way to create a batch of default subtasks that can be attached with fewer clicks?

2 answers

2 accepted

0 votes
Answer accepted
Joshwa Marcalle
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.
December 12, 2018

Hi Kirk,

Alexey is correct, you will need an app for this.

I recommend something more user-friendly like: Automatic subtasks pro

 

Hope this helps

Josh
OB1

Kirk Eisele December 12, 2018

Checking it out now.

0 votes
Answer accepted
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.
December 11, 2018

Hello,

You would need an add-on for it.

For example, you could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could create a script with a code like this:

string parent_key;
string issue_type = "Story";
string issue_summary = "Sample Issue #";
string priotity;
string issue_description = "";
string[] components;
date dueDate;
interval estimate;
string securityLevel;
string[] issue_fields_mapping;

for(number count = 1; count <= 100; count ++) {
//createIssue(projectKey, parentIssueKey, issueType, summary, priority, description, components, due date, estimate, security_level, custom_fields_mappings)
string new_sum = issue_summary + trim(count);
string newIssue = createIssue(project, parent_key, issue_type, new_sum, priority, issue_description, components, dueDate, securityLevel, issue_fields_mapping);
}
Kirk Eisele December 12, 2018

Thanks!

Suggest an answer

Log in or Sign up to answer