solidify / jira-azuredevops-migrator

Tool to migrate work items from Atlassian Jira to Microsoft Azure DevOps/VSTS/TFS.
MIT License
261 stars 227 forks source link

Add download option for linked work items #125

Open AmitNaveh23 opened 4 years ago

AmitNaveh23 commented 4 years ago

Another suggestion for an enhancement, Add to the download options, an option to download also linked work items and not just parent-child relationships.

MOlausson commented 4 years ago

We'll look at this when we are addressing some issues regarding linking.

Alexander-Hjelm commented 2 months ago

Solution outline

The Issue keys of all retrieved items can be found like this: issue.Revisions[0].LinkActions[0].Value.SourceItem (string)

Where issue has the type JiraItem.

Solution will have to be implemented in JiraProvider.EnumerateIssues, where ProcessItem() would need to be called on each related issue, regardless of link type and regardless of whether the link has been added or deleted.