Hello,
I would like to create an alert on slack when a ticket stays more than 2 sprints in the column the team must be alerted in a Slack channel (with an exception for To do and Done).
How should I set my automation?
Thanks
Hello @Sandra Kabamba
Welcome to the community.
There is nothing native in JIRA Cloud that you can access that will tell you when a card was moved to a column/status. You can access the StatusCategoryChangedDate field via JQL queries to find out when an issue last changed Status Category.
(All Status values are assigned to a Status Category - To Do, In Progress, or Done. But you may have multiple statuses that belong to the In Progress category, and each of these might display in a different column in your board.)
If it is not a requirement to post the information to Slack, you can simply create a Saved Filter and then subscribe to the filter to get it sent to you periodically via email.
Otherwise, you can set up a scheduled task like this to check the StatusCategoryChangedDate:
This page says how to incorporate sending a message to Slack in a JIRA automation rule:
https://support.atlassian.com/jira-core-cloud/docs/use-automation-with-slack/
If you must have the notification based on the Status, rather than the Status Category, being unchanged, you may have to look at a third party app from the Marketplace.
Thanks a lot !!
I would also like to create a JQL request so we're also alerted when a ticket is not replied to.
example: I tagged Jack because I need him to check on something but he has not replied in the last 24h so automation sends me a notification).
I get that I have to create an automation rule to receive the notification but how to structure my query?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Sandra Kabamba
That is quite a different problem to solve than the one in your original post. Please start a new post so that the community is aware of your new question. Other members may have already solved that, but may not realize you need help on it since it is buried in an unrelated post/topic currently.
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.
@Sandra Kabamba can you post the new thread link here so I can follow?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could click on Sandra's name to see her post activity and find it there. That's how I found it:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You could use the following to get the tickets.
```
project = <project> and status in (<status>) and status changed BEFORE -2d
```
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.