Jira Automation
You can use Jira Automation to programmatically set values for the Limitless Cascading Level Select custom field. This allows you to dynamically update field values based on triggers and conditions in your Jira workflows.
Steps to Configure the Automation Rule
Go to Jira Automation:
Navigate to Project Settings > Automation.Create a New Rule:
Click Create Rule.
Define the Trigger: Choose a trigger, such as:
Issue Created
Issue Transitioned
Scheduled Time
Add Conditions (Optional):
Restrict the rule to specific cases by adding conditions, e.g.,
Issue Type = Task
Status = Open
Add the Edit Issue Action:
Choose Edit Issue Fields as the action.
Scroll down and select More options for advanced field editing.
Paste the Additional fields:
Add the following payload:
{
"update": {
"customfield_10041": [
{
"set": {
"value": [
{
"id": "1736116269749",
"label": "test 2",
"value": "test 2",
"disabled": false,
"sequence": "root"
},
{
"id": "1736116277414",
"label": "changed 2.1",
"value": "changed 2.1",
"disabled": false,
"sequence": "1736116269749"
}
]
}
}
]
}
}
Publish the Rule:
Save and enable the rule.
Test the rule to ensure it updates the field correctly.
Explanation of the JSON Payload
customfield_10041
: Replace this with the ID of your Limitless Cascading Level Select field.
Notes
Ensure Field Visibility:
Verify that the custom field is added to the edit view and request types in the project configuration.