Hello,
For receiving email alert when due date of an issue reached, i would like to use saved filter and subscribe on it.
So, how can i say to jira for example :
if the due date of my issue is : Jun 30th
send me an email 10 days before Jun 30th ?
There isn't syntax JQL like :
project = "MyProject" AND resolution is EMPTY AND due = due - 10 days ???
Thank you
you need JQL due <=10d
this gives you all issues with duedate in the next 10 days.
then you need to subscribe the JQL (daily subscription)
or https://support.atlassian.com/jira-software-cloud/docs/advanced-search-reference-jql-functions/
endOfDay()
endOfMonth()
endOfWeek()
but the problem here is that i have to wait 10 days to do the subscription on this filter for the issue who have due date as Jun 30 th ( that is to say i will do the subscription on Jun 20th ) i don't know if you understand what i mean ?
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 have due date jun 30th in the issue
with jql <=10d (or maybe <= -10d) you will see the issue on june 20th in jql.
if you subsrcribe the filter with daily notification, you get the info on june 20th
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.