How can you add a label (tag) in Azure DevOps based on a custom text field (Jira Onpremise)?

Originally asked by Filip Heyns on 24 June 2022 (original question)



Answer by Support on 28 June 2022

Please review the steps listed in the following article on how to synchronize issue labels:
https://docs.idalko.com/exalate/x/cQCe

and let me know if helps with your case.


the link provided no longer works

Hi @Lautaro ,

You can refer to the doc below.

For ADO you can try something like :

def customfieldvalue = replica.customFields.”CF NAME”.value

workItem.labels += nodeHelper.getLabel(“${customfieldvalue}”)

Thanks!