Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

I am looking for the plug-in which has checking issue count and send e-mail features

Dear guys,

 

I'm looking for the awesome plug-in which has below features:

 

1. Create 'A' Filter by JQL

2. IF The issue counts over 5 in 'A' filter Then send e-mail, automatically.

 

As far as I know, JQL is awesome features in Jira. but it is weak in statistics and report.

 

Best regards,

Nate

 

1 answer

1 accepted

1 vote
Answer accepted
Alexey Matveev
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.
January 2, 2019

Hello,

You could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You can write a job with this plugin, which would check the number of issues in a JQL query and send a email. 

For your case, you could write a job like this:

string [] keys = selectIssues("filter = "yourfilter );

if (size(keys) > 5) {

  sendEmail("projectmanager", "teamleader1", "Filter has more than 5 values");

}

You can read more about jobs here:

https://confluence.cprime.io/pages/viewpage.action?pageId=6558186

Suggest an answer

Log in or Sign up to answer