Hello together,
I want to synchronize issues from Jira Cloud to Azure DevOps. The synchronization always starts with the transfer from Jira to ADO. After creating the clone in ADO, the ID and the status should be transferred back into proper fields in Jira. Transferring from Jira to ADO works as expected but the ID and the status are not directly set in Jira after the issue is created in ADO.
Interestingly, the ID and status is set if I change the status in ADO.
It seems that the code in “incoming sync” is not executed during first synchronization. My code is quite simple:
issue."ADO-State" = replica.status.value
issue."ADO-ID" = replica.key
Why does it not work during first synchronization?
Thanks and regards