How to Migrate to a new work item type? #1187
-
Hi, I'm using the Migration tool (which is a huge help) to migrate our work items from an old TFS project to a new DevOps Services tenant. We are migrating from a CMMI project to a new Agile project and we would like to move our Requirement work item data to User Stories. How do I tell the tool to transform the "Requirement" work item to "User Stories"? Right now the base work items have not customization changes so I'm just trying to proof the title of requirement going into a user stories title. Thanks - Greg |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I found the resolution to this using the WorkItemTypeDefintion Node, where you specify the source to target node mappings.. "WorkItemTypeDefinition": { Thanks. |
Beta Was this translation helpful? Give feedback.
I found the resolution to this using the WorkItemTypeDefintion Node, where you specify the source to target node mappings..
"WorkItemTypeDefinition": {
"Requirement": "User Story",
"Epic": "Something Great"
}
Thanks.