Hi,
I have 2 custom fields(Start date and End date) and these fields are placed in the Estimation transition screen.
if the assignee is working on the issue more than the estimated end date then the reporter must get notify .
how can this be achive this in jira.
Regards,
Abhishree Nagesh
Hello,
You should create a filter with a JQL like this:
reporter = currentUser() and "end data" < now()
Then create a subscription for this filter, which will send all found issues to the reporter.
You can read more about subscriptions here:
https://confluence.atlassian.com/jira064/receiving-search-results-via-email-720416706.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.