1
0
-1

Hi,


How can i sync single select list field with JIRA summary field?


Regards

GG

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Hi GG,


      Let's pretend you have a connection between Jira A to Jira B:


      If you want to have a Single Select field value received from Jira A to Summary in Jira B


      In Jira A Ougoing Script you need to add the following snippet code:


      replica.customFields."SingleListFIELD"  = issue.customFields."SingleListFIELD"



      In Jira B Incoming Script you need to add the following snippet code:


      issue.summary = replica.customFields."SingleListFIELD".value.value


      Let me know if this works for you.

      Thanks,

      Ariel


        CommentAdd your comment...