Is there a way to implement the following scenario?
Suppose I have multiple tickets in various statuses. If 5 of these tickets are moved to the "In Testing" status, I want an automation rule that posts them in a Slack channel only at 3 PM daily. (so track what tickets has moved to that status during the day, and only post them at 3pm)
Currently, I have set up an automation rule to post to the Slack channel immediately when a ticket is moved to "In Testing".
Yes we have a similar automation but for SLA breaches.
You would create an automation rule like this,
Trigger: Scheduled time (Daily, 3 PM)
Then Lookup Issues: JQL of the issues you're looking for. I think something like this might work,
status changed to "In Testing" during (startOfDay(), endOfDay())
Then Send Slack Message
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.
I'm not sure if the CRON expression is needed? unless this is the only option for scheduling in data center Jira
Try this JQL as a lookup issues action,
status changed to "Production Owner Review" during (startOfDay(), endOfDay())
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.
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.