Forums

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

Is there a way to iterate through the issues generating to send to slack

harshap303
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 22, 2020

I had created an automation rule which schedules sending messages to slack in bulk for a filter. However, I am not able to iterate through the issues and send all of them as bulk. It just sends one issue to slack whereas the filter show 5 issues. 


image (6).png

1 answer

1 accepted

0 votes
Answer accepted
Mehmet A _Bloompeak_
Atlassian Partner
April 29, 2020

Hi @harshap303 ,

Maybe below works.

{{issues.toUrl}}
harshap303
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
April 30, 2020

Thanks @Mehmet A _Bloompeak_ , that works. But now the issues appear in the same line separated by a `,` . Anyway to output these issues each in a new line

Current output:

Issue1, issue2, issue3, issue4

Expected:

Issue1
Issue2
Issue3
Issue4

Mehmet A _Bloompeak_
Atlassian Partner
May 1, 2020

I hope below works

{{issues.toUrl.concat("\n")}}

Suggest an answer

Log in or Sign up to answer