
Your Power Automate flow seems to be set up correctly to achieve the goal of adding the "Dev Effort" and "Test Effort" fields and updating the "Total Effort" field in Azure DevOps. Here's a breakdown of what your flow is doing:
Trigger: The flow triggers when a work item of type "Product Backlog Item" is updated in the "CCS Dev" project.
Get Work Item Details: It retrieves the details of the updated work item.
Initialize Variables:
DevEffort: Initialized to 0.TestEffort: Initialized to 0.Addition: Initialized to the sum of DevEffort and TestEffort.Conditions:
DevEffort variable to the value of the "Dev Effort" field.TestEffort variable to the value of the "Test Effort" field.Calculate Total Effort: The Addition variable is set to the sum of DevEffort and TestEffort.
Update Work Item: Updates the work item with the new "Total Effort" value while preserving the state and other fields.