Hello !
Is there a way to create some type of notification to users on the board using the 'created __' field or 'updated on ___" field?
Our team wants to see if we can be notified of tickets that are in our log after a set period of time. For example, if a ticket has been open for about 5 days, we want to set a notification to remind us of it.
Thank you!
Hello @Rodrigo Araujo ,
Yes, you can definitely do this:
1. You can use filter subscriptions to get an email notification. See Subscribe to search results . Below is a filter for issues created in last 5 days and not been updated
JQL: project = XYZ and created >= "-5d" AND NOT status changed
2. or You can create a filter and use it on your Jira Dashboard. For example below filter gives you the results of 'Issues that are in progress for longer than 5days in a opensprint'
JQL: project = XYZ AND resolution = Unresolved AND Sprint in openSprints() AND status = "In Progress" AND status changed to "In Progress" before -5d AND issuetype not in (Epic) ORDER BY updatedDate ASC
JQL Advanced Searching reference: https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-fields/
Thank you so much!
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.