I am using Script workflow function : Clones an issue and links in a workflow.
I want to avoid copying of attachments to target issue.
Following https://scriptrunner.adaptavist.com/4.3.6/jira/builtin-scripts.html#_control_of_cloning_attachments i have used checkAttachment = {attachment -> false} but attachments are copied to target issue.
Any idea about what might be wrong here. Code i am using is
issue.assigneeId = "test"; val_1 = 'Test - ' + issue.summary; issue.setSummary(val_1); issue.setDescription(val_1); checkAttachment = {attachment -> false}; checkLink = {link -> false};
Hi Kosta,
I am afraid that this closure was introduced in a later version. I have to check if in one of the free plugin versions offers it, bear with me ...
Hi Thanos,
We have version 2.1.17 with JIRA 6.2.
I have tested as well the case of cloning attachments from specific user
checkAttachment = {attachment -> attachment.authorKey == 'jbloggs'}
Without success.
From logs monitoring i have not seen any related error.
Thanks for your time.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Kosta,
This should just work. Which version of SR you use ?
PS. You miss a
def val_1 = 'Test - ' + issue.summary;
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.