How to sync Fix version to custom text field

Originally asked by sapir monza on 30 October 2019 (original question)


Hi,

We are using exalate for synce between two different projects in our Jira server instance.

We would like that once ticket in project A gets fix version this number will be synced the a text custom field in Project B.

Is it possible?

I tried this:

issue.customFields.“Fix in version”?.value = replica.fixVersions?.name?.asString

But it didn’t work

Thanks


Answer by Roman on 30 October 2019

Hi Sapir,

Can you try

issue.customFields."Fix in version".value = replica.fixVersions?.collect{it.name}.join(",")


  


Comments:

sapir monza commented on 30 October 2019

Thanks! it works (old community)

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.