0
votes

Is there a way to automatically update the status of a Work Item within Azure DevOps from 'New' to 'Active' when the item is added to my 'In Progress Work' from within the 'Available Work Items' section of Visual Studio?

Brief context: I'm using the Kanban board within Azure DevOps and I'd like to move work items along the columns / stages in as automated a way as possible via Visual Studio.

This synchronisation seems to be working fine for items going from 'Active' to 'Resolved', e.g. when I add items to my 'In Progress', amend some code, and perform a check in, I can visually see the item move over to the next column of my Kanban board - it's also changing it's status from 'Active' to 'Resolved'.

1

1 Answers

0
votes

Is there a way to automatically update the status of a Work Item within Azure DevOps from 'New' to 'Active' when the item is added to my 'In Progress Work' from within the 'Available Work Items' section of Visual Studio?

The status of the work items in Azure DevOps is not a one-to-one relationship with the work item status of My work in Visual Studio.

The status of work item in Visual Studio is used to classify the work items not change the status of the work item, so that we can more clearly distinguish which work items are being processed.

You can view the description of In Progress Work in Visual Studio is:

drag a work item here to get started

This looks more like a swim lanes, giving developers a clearer idea of which workitems are associated with development.

Besides, when we commit the code and status of work items, there is option which we could select only with Associate and Resolve:

enter image description here

Only if we confirm that the currently associated work item is completed, we will choose the option to Resolve, otherwise it will be Associate.

On the other hand, we could add a custom status of work item on the Azure DevOps. Obviously, we could not match our new custom state to the status of work item in Visual Studio.

Hope this helps.