Some times our mailconnector fails. Therefore I tried to make two automation rules:
The first rule sends an email to the connector, with summary 'mailconnector check', this works.
The second rule must lookup if a ticket is created with the summary 'mailconnector check', if yes, the ticket must be deleted, if not then an email must be send to the admin.
How can I made a rule who is looking up for these specific ticket and if found it must be deleted.
Hi Bill, see below the details.
I have one ticket with the right description:
In this situation there won't be send an mail in my opinion.
After I deleted this ticket, the log file is:
Also in this situation a mail has been send. I don't understand what happens.
Regards.
That is an interesting use case to check for availability. Well done!
To find your issue to delete, consider how to make it unique-enough to find while being different from people-created issues.
For example, perhaps put something in the summary you can test with a condition, such as "mail connector TEST issue".
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill, true, the summary must unique, but how can I search through the issue to find this specific issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How many of these "canary" issues do you expect to exist at one time? If only one then:
I recommend using a longer and more unique summary to reduce the risks of problems.
If you expect there to be multiple, and you want to remove them at one time, consider instead using a scheduled trigger rule with the JQL to find them:
project = myProjectName AND summary = "mail connector TEST issue"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill,
The trigger "issue created" doesn't work, if the mail connector doesn't work there is no issue. The trigger must be sheduled. I made a sheduled rule but get the error message:
It seems not possible to trigger a scheduled rule without a JQL statement?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Evert,
Nope, you definitely can have a scheduled trigger rule without JQL.
And, are you using the Cloud or Server/Data Center version, as each has different batch processing options? For example for Cloud:
project = myProject
AND summary = "mail connector TEST issue"
AND ...any other criteria
This works for one-issue-found. If you possibly have more to delete, you will need a branch with the JQL before the delete action.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill, Thank you for reply.
I have made the rule you suggested, but still the same error.
It seems, it is not possible to do actions on an issue, without the option to run JQL?
I try it with two rules, the first one send a mail if these is no issue (mailconnector doesn't work), the second deletes the ticket if there is a ticket (mailconnector works). The first one doesn't work, what do I wrong?
Can you help me?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Would you please post images of:
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill, see below the details.
If I create a ticket with the right summary, the lookup find the issue, bu also a mail will be send.
I don't understand what happens?
Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah! Smart values are usually case sensitive, and unfortunately do not show errors when you get the case incorrect. The smart value for Lookup Issues uses camel-case:
{{lookupIssues.size|0}}
Please change your condition and see what happens.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill,
I have changed it, and it works now. Thank you very much for the support.
Regards,
Evert
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.