Hi @Kauê -- Welcome to the Atlassian Community!
Yes, that is possible with automation rules.
As you describe just starting out with automation, I recommend reviewing this overview first: https://www.atlassian.com/software/jira/guides/automation/overview#what-is-automation
Next, your rule could use the Sprint Started trigger: https://support.atlassian.com/cloud-automation/docs/jira-automation-triggers/#Sprint-created--started--or-completed
However that will not return the issues...just the sprint info. And that info may be used to find the issues. Let's assume you want to send one single message with the list of issues in the sprint. And so the Lookup Issues action can be used to gather the issues with JQL: https://support.atlassian.com/cloud-automation/docs/jira-automation-actions/#Lookup-issues
Finally you may use the Send Slack Message action to send the issue data, referencing the fields needed with smart values: https://support.atlassian.com/cloud-automation/docs/jira-smart-values-issues/
Putting it all together, the rule may look like this:
project = yourProjectName AND sprint = {{sprint.id}} ORDER BY Key ASC
Sprint "{{sprint.name}}" started, running from {{sprint.startDate.jiraDate}} to {{sprint.endDate.jiraDate}}.
Here are the issues:
{{#lookupIssues}}
* {{key}}: {{summary}} -- assigned to {{assignee.displayName}} -- {{url}}
{{/}}
Kind regards,
Bill
Bill, thank you very much for your patience in explaining it to me, it worked!!! Thanks for the materials, I'll definitely take the time to look into it further, thanks Jira community.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Kauê , You can create the automation rule as follows
Trigger: Sprint Started , select board and sprint name
Action: Send Slack Message
In the message section use the smart values to send the necessary info.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's the problem, unfortunately. I don't work much with automation and I'm just starting out, so I need some guidance on the rules I need to use to pull in the necessary data.
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.