I can not find a way to create a custom rule that will update a User Stories Status when a child tasks status changes to "In Progress".

Or when all child tasks are set to "Done" can the parent story status be set to Done automatically?

Checked all Custom Rule help

2

There are 2 best solutions below

0
Shamrai Aleksander On

There is no custom rule for that, but you may use custom apps or scripts with Rest API for that. Examples:

  1. .Net App

  2. Logic App

0
pmath325 On

What I would do is use Power Automate

  1. Create an automation that triggers when a "task" is updated
  2. Gather the details of the updated item (This will easily show you the ID of the task, status of the task, & Parent ID which should point to the user story or PBI)
  3. If status of the triggering task = "In progress" (or whatever you need), modify the parent item's status to "In progress" using the parent ID

I can mock this up if needed and share a screenshot but this should do the trick.