I have a scheduled automation (in Automation for Jira Plugin).
Trigger:
- Cron Expression: 0 0 5 1/1 * ? * (At 05:00:00am, every day starting on the 1st, every month)
- JQL: "Organizations = null" (results in multiple tasks)
Action:
- Send Mail: Mail should contain a list of all results in the previously executed JQL query. My approach:
<ul>
{{#issues}}
<li>{{key}} - {{summary}}</li>
{{/}}
</ul>
The problem is that it sends out n Mails for all results of the JQL query, but I actually only want 1 E-Mail with the complete list of all results. How can I do this?
PS: I also tried using my JQL query as condition and not in the trigger configuration itself, but this is not possible because an Error pops up when publishing:
The rule has been configured with components that require issues to be provided by the trigger. You need to use the option to run JQL to provide issues. The following components require issues: JQL condition
Thanks in advance.
It seems this is not possible yet (*sigh*):
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.