I want to do automation that when anyone changes child task state to ‘In Progress’ their parent i.e. Product backlog Item’s state gets update to ‘Committed’ automatically in azure board.
To achieve this have tried creating logic app but every time whilst running condition step is getting skipped with status ‘Branching condition is not satisfied.
My Logic app designer looks as below
Here are my steps which am using in logic app.
Condition as when task state is in progress and parent is equal to New
when condition is true then run below step which is not running at the moment
Here is conditions drop down reference for PBI which am using
2
Answers
Here I am trying to update the Parent Task’s state from
Doing to Done
if Child Task’s state changes to Done.Please verify if your Condition is true, even I got the same error when my condition executed with false.
Or else verify if
System.State: Committed
is available in your work item dropdown.Workflow:
Checking when parent’s state is Doing and Child’s state is Done, it will return true.
Output:
My workflow is getting executed successfully and state got changed to Done.
Please check, if both the fields in Condition action is populating correctly and executed with true status.
Yesterday I created the same workflow as yours, and then encountered the same issue as yours. The "expressionResult" of Condition has always been false. What’s interesting is that I created a new workflow with the same actions today, and it worked. Sharing my code with you, you can compare with yours and see if there are any differences.