1
0
-1

I'm syncing Jira Cloud A to Jira Cloud B. Is it possible to suppress Epic Color sync, so that we can have independent epic color choices on each side of the integration? 


I tried this in the Incoming section in an attempt to ignore whatever color is set on the replica, but it did not work. 


issue.customFields."Epic Color" = issue.customFields."Epic Color"

  1. Ariel Aguilar

    Hi Stephen,

    Have you tried the following?:

    if(replica.customFields."Epic Color"){
    issue.customFields."Epic Color".value = null
    }

    Or even:

    if(replica.customFields."Epic Color"){
    issue.customFields."Epic Color".value = "green"
    }


    Kind regards,

    Ariel

CommentAdd your comment...