jpiquot / ChildTasksTemplate

Apache License 2.0
8 stars 4 forks source link

Allow reusable sets of tasks that maintain ordering [low priority] #15

Open o-o00o-o opened 2 years ago

o-o00o-o commented 2 years ago

One thing that our current "1-click child tasks" component does well (that has a number of other issues and we'd love this to replace it) is allowing us to setup a number of tasks in order

image

i.e we want "heal effect of bug" bug only task to be before shared "orientation and task estimates" and that before bug only task "add PostDeploy to remove DisableDoParameter".

I mentioned this way back in the now closed #1

The problem with the current implementation is that we either have to have

Today our only practical option is the first one with the overhead that this brings

It would be great if we could either

  1. Indicate a constraint on each Task to indicate the "workItemTypes" that this would be created on. This way we would just have a single group "Bugs/Pbis" and then appropriate tasks would be created in the given order
  2. Have a way to indicate ordinal

option 1 is much more preferable as it would be much easier to maintain and intuitive to understand what would happen

o-o00o-o commented 2 years ago

I've actually solved this for now by having a master simplified json (like #12) and a powershell that generates the 2 separate groups of task.

So for me this is now a lower priority issue