Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How to skip attachments while creating linked Jira ticket using script runner post function?

Susheela Kushwaha February 25, 2022

Hi,

I am trying to create a linked Jira ticket using ScriptRunner 'clone and issue, and links' post function. We want the new issue to copy all fields from parent issue but skip the attachments. I tried below code but it throws NullPointerException probably because the linked issue is not created yet.

def attachments = ComponentAccessor.attachmentManager.getAttachments(issue)
attachments.each {attachment ->
attachmentManager.deleteAttachment(attachment)
log.error("attachement removed in loop")
}

Please suggest if there is any other way to skip the attachments?

 

1 answer

1 accepted

1 vote
Answer accepted
Adrien Low _ServiceRocket_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 25, 2022

Hey @Susheela Kushwaha ,

You should be able to skip the copying of attachments by inserting the below code in the Additional issue action field in the same post-function:-

checkAttachment = {attachment -> false}

This is also documented in ScriptRunner's documentation if you require any further information:-

Hope this helps.

Regards.

Susheela Kushwaha February 25, 2022

Hi @Adrien Low _ServiceRocket_ 

This is perfect and exactly what I was looking for. Thank you so much!

Nathaniel Campiou February 26, 2022

thanks 

Suggest an answer

Log in or Sign up to answer