Forums

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

Automation giving validation errors and not running

mgupta
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 11, 2026

Context - creating an automation to circulate in progress Jira items by assignee once per week. 

Items to share are being created by JQL and it is validating fine.

Action step is looping against each issue fetched by the JQL and adding them one by one to the body email and sending the email after that.

Validation error on the rule - 

Warnings won't stop your rule from running, but it's best to resolve them.
Audit log error - 
SOME ERRORS
...the rule was disabled, deleted or re-configured while it was running; or you may have reached your execution limits

3 answers

1 accepted

1 vote
Answer accepted
Bill Sheboy
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 Champions.
March 11, 2026

Hi @mgupta 

For a question like this, context is important for the community to help.  Please post the following:

  • an image of your complete automation rule in a single image for continuity
  • images of any relevant actions / conditions / branches
  • an image of the audit log details showing the rule execution
  • explain what is not working as expected and why you believe that to be the case 

Until we see those...

That error message means what it states: the rule was modified while trying to run it, or something the rule does exceeded usage limits or service limits.  Seeing your complete rule and audit log details will help clarify what is happening.

Also, when you want to send one communication per assignee weekly, consider using:

 

Kind regards,
Bill

mgupta
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 11, 2026

Hey Bill, thanks for the help. Here's the screenshots for context - 

Rule - 

image.png

Trigger with the JQL-

JQL = project = ET AND status IN ("In Progress", "IN QA", "READY FOR DEV", "UAT SIGNOFF", "To Do") AND "Start Date" >= startOfWeek() AND "Start Date" < startOfWeek("+1w") ORDER BY assignee ASC, "Start Date" ASC

image.png

Action - 

Hi,

Here are all ET issues with Start Date in this week:

|| Key || Summary || Assignee || Status || Start Date || Due Date || Sprint ||
{{#issues}}
| [{{key}}|{{url}}] | {{summary}} | {{assignee.displayName}} | {{status.name}} | {{Start Date}} | {{duedate}} | {{sprint.name}} |
{{/issues}}

Thanks,
Jira Automation

image.png

Audit log error - 

image.png

Aaron Pavez _ServiceRocket_
Community Champion
March 11, 2026

Hi @mgupta 

Click on the arrow at the end of the log to see the actual error. 

Regards

Like Bill Sheboy likes this
mgupta
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 11, 2026

Thanks, though not much help there as you can see..image.png

Aaron Pavez _ServiceRocket_
Community Champion
March 11, 2026

yeah that didnt help.

What if you run the rule manually? In the 3 dots near the toggle, you can run it manually. see if that gets you any logs.

Also can you add here:

1. Test the query on the search item section. see if you get what you need.

2. a screenshot of the send email action

Add the query here and same for the email you are sending.

Regards

 

Bill Sheboy
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 Champions.
March 11, 2026

Thanks for those images, @mgupta 

Based on what I see in the rule details, I wonder: are you using a service account for the rule?

And, related to the scheduled trigger:

  • The trigger does not have any JQL to provide work items to the rule
    • The option "Run a JQL search..." is not enabled
  • Instead, there appears to be a condition on the trigger, which is likely not needed
    • There are several open defects for conditions on triggers, and thus I recommend never using them until Atlassian fixes all of them
    • Instead, when additional conditions are needed, add them separately after the trigger

 

mgupta
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 11, 2026

Hi @Bill Sheboy : I tired having the "Run a JQL search..." in the rule, but in that case it would send 30 emails with the same email message in case there are 30 items from our JQL query. Hence I chose to not use it and thought that having the JQL in the condition would have the same effect without sending multiple emails. That's the rationale for my setup far and if conditions on triggers are riddled with defects, I guess I cannot achieve what I want to do as of now using built in automations, unless I am missing something :(

Anyway to reach out to dedicated Atlassian support reps with this query cos to me my ask seems pretty table stakes. Thanks!

mgupta
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 11, 2026

Hi @Aaron Pavez _ServiceRocket_ the current audit log error I got was from running the rule manually. That's all the detail that it shows unfortunately.

Bill Sheboy
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 Champions.
March 11, 2026

To send one email per assignee, please see the article I noted earlier:

https://support.atlassian.com/automation/kb/automation-rule-to-send-single-email-for-all-issues-per-assignee-due-next/

With that approach:

  • the scheduled trigger has no JQL 
  • instead, a Lookup Work Items action uses the JQL to identify any items and their assignees
  • an advanced branch iterates over the assignees
  • and another Lookup Work Items action uses a refined JQL with the branch variable for each assignee to send their email

Please read the entire article and before trying to implement it.  Thanks!

 

Like mgupta likes this
mgupta
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 12, 2026

Thanks @Bill Sheboy that worked. My loop wasn't working and through your article I was able to fix the smart value to use. 

Like Bill Sheboy likes this
1 vote
Florian Bonniec
Community Champion
March 11, 2026

Hi @mgupta 

 

Do you have a screenshot of the automation, and the error in the audit log ?

How many issues are returned by the JQL.

As mentioned in the error message you may have reach the automation limit.

https://support.atlassian.com/cloud-automation/docs/automation-service-limits/

 

Regards

0 votes
Arkadiusz Wroblewski
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 Champions.
March 11, 2026

Hello @mgupta 

from your description, I would first check whether the rule is doing a JQL search and then iterating through each returned issue one by one.

If yes, then the problem may be less the email action itself and more that the rule scope is simply too broad. A broad JQL combined with a loop can consume Automation capacity quite quickly, especially on Standard, even if you send only one final email.

The message about warnings by itself is not the main problem, because warnings do not always stop the rule. The more useful part is the audit log error below it, since that should show whether the rule is hitting validation, throttling, or simply processing too many items.

So I would suggest checking:

  • the exact JQL
  • how many issues it returns ?
  • whether the loop is really needed
  • and the full audit log error, because that should show the actual failing point

So my first suspicion would be:
the rule is not really failing because of the email itself, but because it is processing too many issues one by one.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events