Child tasks to an issue?
It would be helpful if I could have "child tasks" related to a parent project. Do you know if this is possible, and if so, how to do it?
Please sign in to leave a comment.
you can set a parent-task relation between issues instead of "related to". Use command window or toolbar to set a "parent for" or "subtask of" relation. In a tree view you will see a hierarchy of this issues.
Regards,
Alexander
Is there a way to do the numbering so that if it's a child of project xx-21 the child task would be xx-21-2 (or something similar) instead of xx-22?
Regards,
Alexander
Thanks Alexander.
Do you know how I can get info on how to create a custom workflow to set that tag? I have youtrack workflow editor, but I'm not sure how / where to edit within it to set the tag to do -2, -3, -4... etc.
the following workflow gives numbers to children as tags:
rule Children numbering when parent for.added.isNotEmpty { var childNumber = 0; for each child in parent for { childNumber = childNumber + 1; } for each newChild in parent for.added { newChild.addTag(getId() + "-" + childNumber); childNumber = childNumber + 1; } }Does it cover your case?
children-numbering.zip (2.3KB)