Create filter If perticular set of people have not updated the comment

rinkal September 8, 2019

I would like to search the issue that have not been updated in last X days by some of users

 

Scenerio

One team is updating comment daily in JIRA looking for an update but another team is not responding to that ticket since X days.

I need to list such tickets which are not updated by one team since X days.

3 answers

1 vote
Jakub Sławiński
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.
September 8, 2019

Hi @rinkal ,

 

this is exactly one of the use cases which can be easily resolved by using Agile Dashboard addon.

0 votes
Muhammad Ramzan(Atlassian Certified Master)
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.
September 8, 2019

You can easily achieve this using  JQL Search Extensions for Jira & reports plugin, following query will get all those issues where members of group "Employee" did not add any comments.

 

issue not in commentedByUser("membersOf(employees)")

 

If you want to get issues where comments added by a group then use following query.

issue in commentedByUser("membersOf(employees)") 

 

 

CommentedBetween can be used to find issues with comments added between particular dates. Expected date format is yyyy-MM-dd (year dash month dash day of the month) or dd-MM-YYYY

issue in commentedBetween("2018-05-26", "2018-07-01")
0 votes
Ste
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
September 8, 2019

Hi @rinkal

You'll need to consider an add-on for this. 

One option is ScriptRunner which can cover this and other comment-based queries. You can see a whole list of comment-based options for ScriptRunner here.

Worth looking on the Marketplace to see what best suits your needs - there are plenty of other options :)

Ste

Suggest an answer

Log in or Sign up to answer