Forums

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

How to set Labels (advanced) with an array?

Khira Niemeier
Contributor
March 10, 2025

We are currently trying to set up our Automation that is adding the Labels of the Parent, when creating a subtask.
So far we managed to add the labels, if it is only 1. So the problem appears, when there is more than one label to be set.

Our automation uses the following JSON:

 

{

"update": {
"labels": [{
"add": "{{issue.parent.labels}}"

}]

}

}

 

So I guess our question is: Is there a way to tell the automation that we need to use all of the labels in the array?

We already found out that  {{issue.parent.labels.size}}  will throwout the number of labels - but we didn't manage to create any solution with this info.

2 answers

1 accepted

2 votes
Answer accepted
Bill Sheboy
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.
March 10, 2025

Hi @Khira Niemeier 

Rather than using an Advanced Branch to add the labels, I recommend using a list iterator over the parent values and add them with one single edit using a dynamic JSON expression for labels.  This will be faster, less likely to fail if there is a single rule error, and not cause any rule timing problems (due to the branch running in parallel and asynchronously).

For example:

  • smart values condition: only proceed if the parent has labels
    • first value: {{issue.parent.labels}}
    • condition: does not equal
    • second value: leave this as empty
  • action: edit issue with JSON to add the labels
{
"update": {
"labels": [
{{#issue.parent.labels}}
{
"add": "{{.}}"
}{{^last}},{{/}}
{{/}}
]
}
}

 

Kind regards,
Bill

Khira Niemeier
Contributor
March 10, 2025

Thanks @Bill Sheboy :) 
This solved the problem that we just encountered :D 

Like Bill Sheboy likes this
0 votes
Khira Niemeier
Contributor
March 10, 2025

Okay found the solution. :D 

We create an advanced branch and insert the array {{issue.parent.labels}} so it creates a smart value {{ParentLabel}} for every Label in the array. (as far as I understand)
ParentLabel.jpg

And then we use the same Advanced Editing with a small change to {{ParentLabel}} instead of {{issue.parent.labels}}:

{

"update": {
"labels": [{
"add": "{{ParentLabel}}"

}]

}

}

 I hope it might help people who run into the same issue. ;)

Khira Niemeier
Contributor
March 10, 2025

We encoundered the next problem:
The Automation is too fast and does all the For steps at once (which leads to only one of the labels being set). 
The more Labels there are the less times it works.
Works with 2 Labels (sometimes):
Works.jpg
Doesn't work with 3 or more:
WorksNOT.jpg

If someone has an idea how to fix it let me know. :D 

Re-fetch issue Data doesn't help as it seems.

SkipLabels.jpg

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events