Email Notification for issue which are not updated

Kiran Reddy July 23, 2012

Hi,

Is there any way to create a email notification to be sent to assingee and reporter for issue which are not update after some period.

Please help us on the query.

2 answers

1 vote
Thomas Heidenreich
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 23, 2012

We have a filter for that:

updated <= -1w AND status != closed AND assignee = currentUser()

which is subscribed by the jira-users group to inform the assignees - I think you can easily expand that for reporters, i.e. a second filter with

updated <= -1w AND status != closed AND reporter = currentUser()

which should also be subscribed by jira-users, or whatever group you like to notify

1 vote
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 23, 2012

Suggest an answer

Log in or Sign up to answer