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
Hello,
You could use the Power Scripts add-on:
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.