Forum Discussion
Unable to create multiple actions with Make Read only for different fields based on user group
Hi,
We are using azure boards to configure rules for a project. I have different user groups where each user group have access to different set of Fields. When i create a rule with Condition 'Current user is not member of the group' with a user group and added an action like Make Read only and selected one field. Now i want to add Make read only for another field for the same user group. How can i add another action here without creating a different rule for another field.
Thanks in advance
2 Replies
- jackson6Copper Contributor
In Azure Boards, when working with the “Make Read Only” action, you can only set one field per action within a rule. If you want to make multiple fields read-only for the same condition (e.g., “Current user is not a member of the group”), you don’t necessarily have to create entirely separate rules for each field. Instead, you can:
Edit the existing rule and add multiple “Make Read Only” actions within the same rule — one per field.
If the UI doesn’t allow adding another action directly, try duplicating the action and changing the field, or use the “Add action” button multiple times within that rule.
Make sure the rule order and scope are correct so there’s no conflict with other permission settings.
This approach keeps the configuration clean and avoids unnecessary duplication of conditions. I actually came across a detailed guide on Azure Boards rules while browsinghttps://universalmagzines.com/, which explained the multi-action setup quite clearly — might be worth checking for additional examples.
May consider below workarounds:
- Go to Project Settings > Work Item Types.
- Select the work item type (e.g., User Story, Bug).
- Click Rules.
- Create your rule with the condition:
Current user is not a member of [Your Group]. - Add one “Make read-only” action for a field.
- Save the rule.
- Now click Export Process (if using Inherited Process) or use Azure DevOps REST API to retrieve the rule definition.
- Edit the JSON to include multiple fields under the actions array:
"actions": [ { "actionType": "MakeReadOnly", "targetField": "Field1" }, { "actionType": "MakeReadOnly", "targetField": "Field2" } ]9. Re-import or update the process using the API or admin portal.