Subtask smart value in Jira Automation

aynura.nasibova
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.
August 2, 2022

Hi!

We have rules, which show us all issues.

I need rules, which show all issues with subtasks.

Thanks for helping

Снимок экрана 2022-08-03 в 03.16.04.png 

1 answer

1 vote
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.
August 2, 2022

Hi @aynura.nasibova 

I believe the smart value you want is {{issue.subtasks}} which is the list that you can iterate over.

The rule you are showing is accessing the {{issues}} smart value, which is only valid for bulk-processing with the scheduled trigger or a branch.  If you had such a rule, you could nest the iterators, one within the other.

{{#issues}}
here is an parent issue key {{key}}
{{#subtasks}}
and here is a subtask key {{key}}
{{/}}
{{/}}

Kind regards,
Bill

aynura.nasibova
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.
August 3, 2022

Thank you!! You are really helping me!))

Like Bill Sheboy likes this

Suggest an answer

Log in or Sign up to answer