xl8bot
1
Originally asked by Eloise Bouko on 16 April 2021 (original question)
Hi,
Synchronization: Azure Devops to Jira Data Center
Setup in Azure Devops:
outgoing:
//Send a Custom Field value
replica.customKeys.“ReproSteps” = workItem.“Microsoft.VSTS.TCM.ReproSteps”
//Severity
replica.severity = workItem.“Microsoft.VSTS.Common.Severity”
this gives in the local replica somewhere in the json
…
"customKeys": {
"ReproSteps": "<div>Test for synchronizing description</div>"
},
"severityName": "2 - High",
…
what do we have to configure on Jira side to get these fields correctly synchronized?
Thanks in advance and best regards
Eloise
xl8bot
2
Answer by Eloise Bouko on 16 April 2021
For anyone searching to do the same:
on Jira Data Center side just add this to incoming:
// Repro Steps CF set
issue.customFields.“Steps to Recreate”.value = replica.customKeys.“ReproSteps”
// Severity CF set
issue.customFields.“Severity”.value = replica.severity
Which fixed that issue,
only thing is that the html in the repro steps is not converted in the correct format
Any help with that, would be also awesome
Comments:
Francis Martens (Exalate) commented on 16 April 2021
Can you check if Converting HTML to Wiki - the Azure DevOps style (old community) can help?
Eloise Bouko commented on 16 April 2021
yes, that can help, I shared with our 3rd party partner for applying to their Jira instance
xl8bot
3
Answer by Eloise Bouko on 21 April 2021
Francis Martens (Exalate)it helped, we got it working!!
Comments:
Francis Martens (Exalate) commented on 21 April 2021
Nice to hear.
xl8bot
Closed
4
This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.