You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
JIRA Server 8.4.2 & scriptRunner 5.6.8.1
Creating a Custom scripted field in script runner
Field Name : "Parent Labels"
script being used is :
return (issue.parentObject != null) ? issue.parentObject.getLabels() : null;
Value it returns is when looking at subtasks in search is showing the list of labels from the parent ok. Problem the labels are enclosed in brackets .
For example : [label_one, label_two, label_three]
Tried to use replaceAll but could not get that to work removing the "[" or "]" and would end up not returning anything.
Would like to be able to have it return as : label_one, label_two, label_three
Hi @Alex Cumberland ,
Try this bit of code below.
def labels = issue.parentObject.getLabels()
labels.join(',')
Or
issue.parentObject.getLabels().join(',')
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.