Coder Social home page Coder Social logo

Comments (13)

Alexander-Hjelm avatar Alexander-Hjelm commented on June 11, 2024

FYI the reference name for the field is "Microsoft.VSTS.Common.AcceptanceCriteria".

Can you share your config.json file?

from jira-azuredevops-migrator.

Alexander-Hjelm avatar Alexander-Hjelm commented on June 11, 2024

Potentially related to #851?

from jira-azuredevops-migrator.

diegoq avatar diegoq commented on June 11, 2024

Sure,

That's my config file.
{
"source-project": "COE SOFTWARE",
"target-project": "AMS SES",
"query": ""Epic Link"=SW-57991 and issue in(SW-59066, SW-58880) ORDER BY rank",
"using-jira-cloud": true,
"workspace": "C:\Temp\JiraExport\",
"epic-link-field": "Epic Link",
"sprint-field": "Iteracion",
"download-options": 7,
"batch-size": 20,
"log-level": "Debug",
"attachment-folder": "Attachments",
"user-mapping-file": "users.txt",
"base-area-path": "AMS SES",
"base-iteration-path": "AMS SES",
"ignore-failed-links": true,
"include-link-comments": false,
"include-jira-css-styles":false,
"process-template": "Custom-agile",
"link-map": {
"link": [
{
"source": "Epic",
"target": "System.LinkTypes.Hierarchy-Reverse"
},
{
"source": "Parent",
"target": "System.LinkTypes.Hierarchy-Reverse"
},
{
"source": "Relates",
"target": "System.LinkTypes.Related"
},
{
"source": "Duplicate",
"target": "System.LinkTypes.Duplicate-Forward"
}
]
},
"type-map":{
"type": [
{
"source": "Feature",
"target": "Feature"
},
{
"source": "Epic",
"target": "Epic"
},
{
"source": "Story",
"target": "User Story"
},
{
"source": "Bug",
"target": "Bug"
},
{
"source": "Task",
"target": "Task"
},
{
"source": "Sub-task",
"target": "Task"
}
]
},
"field-map": {
"field": [
{
"source": "summary",
"target": "System.Title",
"mapper": "MapTitle"
},
{
"source": "assignee",
"target": "System.AssignedTo",
"mapper": "MapUser"
},
{
"source": "description",
"target": "Microsoft.VSTS.Common.AcceptanceCriteria",
"mapper":"MapRendered"
},
{
"source": "priority",
"target": "Microsoft.VSTS.Common.Priority",
"mapping": {
"values": [
{
"source": "Blocker",
"target": "1"
},
{
"source": "Critical",
"target": "1"
},
{
"source": "Highest",
"target": "1"
},
{
"source": "Major",
"target": "2"
},
{
"source": "High",
"target": "2"
},
{
"source": "Medium",
"target": "3"
},
{
"source": "Low",
"target": "3"
},
{
"source": "Lowest",
"target": "4"
},
{
"source": "Minor",
"target": "4"
},
{
"source": "Trivial",
"target": "4"
}
]
}
},
{
"source": "Sprint",
"source-type": "name",
"target": "System.IterationPath",
"mapper": "MapSprint"
},
{
"source": "labels",
"target": "System.Tags",
"mapper": "MapTags"
},
{
"source": "comment",
"target": "System.History",
"mapper":"MapRendered"
},
{
"source": "status",
"target": "System.State",
"for": "Task",
"mapping": {
"values": [
{
"source": "To Do",
"target": "To Do"
},
{
"source": "Done",
"target": "Done"
},
{
"source": "In Progress",
"target": "In Progress"
}
]
}
},
{
"source": "status",
"target": "System.State",
"for": "User Story, Epic",
"mapping": {
"values": [
{
"source": "Parking Lot",
"target": "Backlog"
},
{
"source": "New",
"target": "Backlog"
},
{
"source": "Pending Grooming",
"target": "Requeriment"
},
{
"source": "Ready",
"target": "Requeriment"
},
{
"source": "Ready for DEV",
"target": "Requeriment"
},
{
"source": "Development",
"target": "Active"
},
{
"source": "Build Installed",
"target": "Active"
},
{
"source": "Certification",
"target": "Active"
},
{
"source": "Done",
"target": "Done"
},
{
"source": "Approved",
"target": "Done"
},
{
"source": "Closed",
"target": "Closed"
},
]
}
},
{
"source": "status",
"target": "System.State",
"for": "Feature",
"mapping": {
"values": [
{
"source": "To Do",
"target": "New"
},
{
"source": "Done",
"target": "Done"
},
{
"source": "In Progress",
"target": "In Progress"
}
]
}
},
{
"source": "Story Points",
"source-type": "name",
"target": "Microsoft.VSTS.Scheduling.Effort",
"not-for": "Task"
},
{
"source": "remainingEstimate",
"target": "Microsoft.VSTS.Scheduling.RemainingWork",
"for": "Bug,Task"
},
{
"source": "description",
"target": "Microsoft.VSTS.TCM.ReproSteps",
"for": "Bug"
}
]
}
}

from jira-azuredevops-migrator.

diegoq avatar diegoq commented on June 11, 2024

In addition if I use the description field the images don't break.

from jira-azuredevops-migrator.

Alexander-Hjelm avatar Alexander-Hjelm commented on June 11, 2024

Looks like the attachment path correction is only implemented for Description, Repro Steps and Comments as of today. Let me create a fix and upload a build for you to try out @diegoq. I will get back to you with a build soon!

from jira-azuredevops-migrator.

Alexander-Hjelm avatar Alexander-Hjelm commented on June 11, 2024

Debug.zip
@diegoq Try this build and let me know the results!

from jira-azuredevops-migrator.

diegoq avatar diegoq commented on June 11, 2024

@Alexander-Hjelm Debug zip doesn't have the wi-import exe.

from jira-azuredevops-migrator.

Alexander-Hjelm avatar Alexander-Hjelm commented on June 11, 2024

Debug.zip

You are correct, use this one

from jira-azuredevops-migrator.

diegoq avatar diegoq commented on June 11, 2024

Hi @Alexander-Hjelm, now the jira-export is missing.

from jira-azuredevops-migrator.

Alexander-Hjelm avatar Alexander-Hjelm commented on June 11, 2024

Use both of the above zips! One contains the exporter and one the importer

from jira-azuredevops-migrator.

diegoq avatar diegoq commented on June 11, 2024

Ok Let me do it

from jira-azuredevops-migrator.

diegoq avatar diegoq commented on June 11, 2024

@Alexander-Hjelm yes Those zips work! so what's the next step?
image

from jira-azuredevops-migrator.

Alexander-Hjelm avatar Alexander-Hjelm commented on June 11, 2024

Perfect! :)

The bundles I sent you are based on the main line, so you already have the latest version of the tool. Continue using that until we have released the next version with these changes incorporated.

Merging the PR will close the issue. Feel free to reopen it and tag me if the problem persists!

from jira-azuredevops-migrator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.