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?
Community moderators have prevented the ability to post new answers.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You would need an add-on for it.
For example, you could use the Power Scripts add-on:
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);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.