Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Associate custom sub task with a custom tasks

Sergey Shkut May 23, 2021

What is the reason do not have the possibility to have a few custom sub-tasks associated with custom tasks in one project?

Fo example:
On one project
Dev task -> dev sub-task (with dev workflow)
Design task -> design sub-tasks (with design workflow)

At this moment I get how to set only:

All tasks could have any type of sub-tasks

2 comments

Comment

Log in or Sign up to comment
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 23, 2021

That's correct, Jira does not have a function to limit sub-task types by the parent type.  

Like John Funk likes this
Darryl Lee
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 28, 2021

[Edited with working example. Also, the UX is not that bad.]

So, it turns out you can do this in Cloud with any of the add-ons that support Validators that allow for custom Jira Expressions. (Which is I think all of them.)

Basically I added a Custom/Scripted/Build-it-yourself Validator on the Create transition with the following Jira Expression:

(issue.issueType.name == "Sub-task" 
&& issue.parent.issueType.name == "Task") || 

(issue.issueType.name == "Bug Sub-task" 
&& issue.parent.issueType.name == "Bug") ||

!["Bug Sub-task","Sub-task"].includes(issue.issueType.name)

With an error message:

Only Tasks can have Sub-tasks. Bugs must have Bug Sub-tasks.

So basically what this is doing is, if the issueType of the issue you are trying to create is a Sub-task, the parent must be a Task. OR, if you're trying to create a Bug Sub-task, the parent must be a Bug. Lastly, if you are not trying to create either kind of Sub-task, then the validator lets you proceed.

Here's what it looks like if you don't match it up right:

subtasks.png

It's easy enough to flip the Issue Type and get it right.

Like Sergey Shkut likes this
Sergey Shkut May 28, 2021

Hm, it can help.

Thank you

Sergey Shkut May 28, 2021

But it is an additional plugin

So if chose plugin, I prefer for this case https://marketplace.atlassian.com/apps/1211968/issue-type-filters-and-security?hosting=server&tab=overview

Darryl Lee
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 28, 2021

Ooof, for some reason I was thinking of Jira Cloud. My bad.

Yeah, that add-on looks like it would do exactly what you need.

  • Restrict allowed parent issue types for subtasks.

In my example, it can't be done with two separate Validators, I forgot that unlike Conditions, you can't have "Any". I still think it can be done with a single Jira Expression. 

Anyways, apparently it can be done on Server/Data Center with:

Darryl Lee
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
May 28, 2021

But yeah, this can't be done out of the box:

https://jira.atlassian.com/browse/JRASERVER-7990

Sergey Shkut May 28, 2021

Thank you for your help.
These links are the next level of working with JIRA

TAGS
AUG Leaders

Atlassian Community Events