I get a lot of e-mail from one automated account at my company and some of the items need to become tickets and some don't. The difference is simply the subject line of the e-mail that hits Jira. How can I filter these items out and remove these tickets automatically?
Thanks in advance - I've googled a lot on this and can't find a good answer... maybe there isn't one! But it is something that every other helpdesk I've ever used can do so I hope I"m just overlooking something.
Hello,
You could also use the Power Scripts add-on:
You could create the SIL post function with a code like this:
if (summary == "your keyword") {
deleteIssue(key);
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Chris Michetti,
Welcome to the community.
If you are using Jira Service Desk, an automation might do for you.
If not, you will need an add-on like automation for Jira or Script Runner, where you can do this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The built-in automation doesn't seem to want to work based on the summary or even the reporter (email address). The automation rule looks like it would be perfect but it does nothing. The tickets still get generated no matter what.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.