You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello friends.
I have the following task:
every time the sprint is closed I need to send an email to the stakeholders and add to the email body list of the issues with some exact status.
Please advise how to proceed.
Hello @Oleksandr_Ruzhylo
Have you tried to construct the rule? If so, please show us what you have so far.
There is a Sprint Completed trigger.
You could follow that with a Lookup Issue action to get the set of issues you want to include in the email.
Then you could use a Send Email action to send the list of issues.
Hello @Trudy Claspill .
I have tried to construct the rule.
I used Sprint Completed trigger, and I used the action "send email".
The main challenge for me is to add a list of issues with the exact status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The sample rule you showed is not using the Sprint Completed trigger.
Between the Sprint Completed trigger and the Send Email action you need to use a Lookup Issues action to actually get the issues you want to list in the email. You use a JQL in that action to select the issue you want.
When you have used the Sprint Completed trigger, then you can use a smart value in the JQL to select issues from the sprint that was completed:
sprint = {{sprint.id}}
That will give you all the issues in the sprint. If you want only the issues that are in a specific status, then add a clause for Status:
sprint = {{sprint.id}} and status = <your desired Status value>
To then send a single email listing all those issue you retrieved, add to the content of your email:
{{#lookupIssues}}
* {{key}}
{{/}}
Where you see {{key}} that indicates that the issue key for each issue returned by Lookup Issues should be printed. If there are other fields from each issue that you want to print add the smart values for those:
These issues were in Status X when the sprint was completed:
{{#lookupIssues}}
* {{key}} {{summary}}
{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Trudy Claspill .
It works!!! Thansk a lot.
In addition, I'm trying to add hyperlinks but seems to be its not working as I wish(
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.
@Oleksandr_Ruzhylo could you post what you used for hyperlinks? I'm looking to do similar. Thank you!
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.