Note
We've packed up and moved from Confluence to Discourse to bring you a better, more interactive space. Out of courtesy we didn't migrate your user account so - you will have to signup again
The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe
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