JMWE Create / Clone Issue - Help with label formatting?

c7788 January 11, 2018

Hello. I am using the JMWE Create / Clone issue function, and have a formatting question.

Under 'Set fields of new issue', I would like to have the new issue's labels be:

 

Copy all labels from current issue. Add label 'xyz'. If current issue has label 'abc', remove it.

So that I would end up with:

Current issue labels: abc def ghi 

New issue labels: def ghi xyz

 

I have tried various Groovy syntax, but keep getting errors. Any help would be appreciated. Thank you.

1 answer

0 votes
Radhika Vijji _Innovalog_
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 12, 2018

Hi

You would need to select "Set field value from Groovy" and write the following Groovy expression.

def labels = issue.get("Labels").findAll{
it.label != "abc"
}
labels.add("xyz")
return labels

 

Regards,

Radhika

c7788 May 3, 2018

This is amazingly helpful. Thank you so much!!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events