You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
We understand the requested feature is not available right now.
https://jira.atlassian.com/browse/JRASERVER-5052.
While cloning a Jira ticket how to copy existing Comments and Request Participants.
Can we use the script runner? If anyone used, please share the steps.
Regards,
Srinivasan S L
Hi @Srinivasan S_L_ ,
You can clone the issue comments with Bobswift's Clone Plus for Jira.
The summary, description, request participants, and other fields get copied without any explicit mention.
Hope it helps!
Thanks,
Reshma
You can use script runner but you have to prepare script, you can use
def issueFactory = ComponentAccessor.getIssueFactory()
def newIssue = issueFactory.cloneIssueWithAllFields(issue)
to clone the issue. Then you have to copy comments.
def commentManager = ComponentAccessor.getCommentManager()
def commentService = ComponentAccessor.getComponent(CommentService) // you have to import com.atlassian.jira.bc.issue.comment.CommentService
def user; // you need to initialize this with user who is creating comment, maybe some service user?
def issueComments = commentManager.getComments(issue)
issueComments.each{
def commentParametersBuilder = CommentService.CommentParameters.CommentParametersBuilder.builder(it)
commentParametersBuilder.issue(newIssue)
def commentParameters = commentParametersBuilder.build()
def validateCreateComment = commentService.validateCommentCreate(user, commentParameters)
if(validateCreateComment.isValid()){
commentService.create(user, validateCreateComment, false)
}
}
I think request participants should be only copying of custom field, but let's try to copy comments and we will solve custom field later.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Martin,
Thank You for the scripts, I will try and reach you in case of any clarification.
Thanks & Regards,
Srinivasan S L
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We often have questions from folks using Jira Service Management about the benefits to using Premium. Check out this video to learn how you can unlock even more value in our Premium plan. &nb...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.