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.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I hope below works
{{issues.toUrl.concat("\n")}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.