1
0
-1

From one issue type in project A, we to need to sync to different issue type in Project B based on the field selection in Project A

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      You can set the issue type name in the sync rules as you want:


      issue.issueTypeName = "Your Issue Type Name"


      and before that put any if you have, so it will look something like that:


      if (replica.customFields."your custom field"?.value== "custom field value") {
      issue.issueTypeName = "Your Issue Type Name"

      }

        CommentAdd your comment...