Hello Community,
We are using automation rule to update Assignee automatically on each state of issue.
Ex: We are assigning a ticket to custom user picker field person when ticket is moved to done state. and its working. but we have one more requirement that, when ticket is moved to done state then ticket should not be edited and it should be in Read only format. for that we are using Jira properties.
Because of this automation rule is not working and its not assigning the ticket automatically.
Is there any way that it should allow automation to run when ticket is in read only format in done state?
Thanks,
Hi @PLaksh11
When Jira issues are set to read-only via workflow properties (like jira.issue.editable = false), automation rules can't update them.
The simplest practical workaround is:
Grant edit permissions specifically to your automation user or group even in the read-only status.
To achieve this:
jira.permission.edit.projectrole = <AutomationRoleID>
or
jira.permission.edit.group = <AutomationGroupName>
This allows your automation rules to update issues without changing workflow logic or introducing manual steps.
Note: Ensure only automation actors have this elevated permission for data integrity.
Kind Regards
Utkarsh
Thanks for the reply. I tried the below properties but still its not working.
jira.permission.edit.projectrole = <AutomationRoleID>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for sharing the details! A couple of things to check:
If the actor is correctly mapped to the role or group, automation should be able to edit even in the Done state.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @PLaksh11
This is a really hacky workaround:
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.