Hello
Our customer has a Jira server and we schould work on a subproject. Our plan is to extract only relevant tickets from this server and work on them on our server.
The customer don't have assesss to our server.
Only part of the ticktes should be merged back to the customer. The idea is that the Descrption/comment starts with an @xyz_customer tag.
Is there a possibility to solve this available?
Also we need to peplicate our Jira server to another Jira server,
You may want to take a look at Backbone Issue Sync, it should be able to sync specific issues between the servers.
As @Mikael Sandberg suggested, you can do this with Backbone Issue Sync. You can use our UI to select which fields you want to expose to your customer.
If you want to share only some comments with your customer, I'd recommend that you use comment restrictions as described in this help article.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
<shameless plug>
An alternative is Exalate - issue sync for JIRA and Cloud.
Exalate provides flexibility through groovy scripts allowing for fine grained implementations of almost any business case.
To ensure that only comments containing the @xyz_customer mentions are synchronized towards the other side, you would specify in your data filter
replica.comments = issue.comments.findall { comment -> comment.body.contains("@xyz") }
Give it a try, and let us know how we can help.
Francis
</shameless plug>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.