Hi Community,
I’m working on a Jira Service Management form with Jira Automation and Jira Assets, and I’d appreciate guidance on the best approach.
I have a form with multiple conditional questions and approver assignment logic based on the selected answers. In particular:
Scenario 1:
Scenario 2:
At the moment, I have split the logic into multiple automations because of the 65 component limit in Jira Automation. For one scenario, I use around 6–7 automations, and for another scenario, around 5–6 automations. These automations run in parallel.
The issue I’m facing is:
My concern is whether using multiple parallel automations is the right approach here, or if there is a better design pattern to avoid missing approvers while staying within the Jira Automation component limit.
Could anyone please suggest:
Thanks in advance for your help.
Hi @Tirupal Reddy Indireddy , the missing approvers are a classic lost-update race: several rules running in parallel all edit the same Approvers field, and only the last write survives, so the others vanish. It's the documented lost-update behaviour, and delays only lower the odds rather than fix it. Stop parallel-writing that one field, and you have a cleaner path than many rules:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.