1
0
-1

Hi,


we are synchronising between our two Jira instances releases (fix version field).


When I create a release in instance A the release isn’t created in instance B. It get only created in instance B when I put an issue into the release in instance A. Or I fill the fix version field in instance A with the desired release.
Is this behavior normal?


When I close a release (make it released) this status isn’t synchronises either, so I have to make it released in instance B manually.
Is this behavior normal?


We use these scripts as adviesed here: https://docs.exalate.com/docs/how-to-synchronize-versions-in-jira-cloud


Outgoing:
replica.fixVersions = issue.fixVersions
replica.affectedVersions = issue.affectedVersions


Incoming:
{{issue.fixVersions = replica.fixVersions.collect

{ v -> nodeHelper.createVersion(issue, v.name, v.description) }}}
{{issue.affectedVersions = replica.affectedVersions.collect { v -> nodeHelper.createVersion(issue, v.name, v.description) }

}}


Am I missing something?


The goal is to make every event synchronised related to releases.


Thank you,


Richard

    CommentAdd your comment...