Get started with Jira Service Management for admins
Your first stop for learning how to get started with Jira Service Management.
After configuring the workflow, let's create the automation rules that triggers the appropriate transition depending on the urgency and impact selected during request creation.
To create an automation rule to prioritize your service project requests:
From your service project, select Project settings, then Automation.
Select Add rule.
Select Custom rule.
Click Continue.
Enter a meaningful name and description for the rule.
Set up when, if and then settings for your rule that correspond to your matrix. Learn more about automation rules.
Click Save.
The rules should follow the following pattern:
When: Issue created
If, or Else if: Specify the urgency and impact value pair according to the matrix, for example:
1
status = "Priority triage" AND Impact = "Extensive / Widespread" AND Urgency = "Critical"
Then: Transition issue, and select the transition that matches the value pair according to the matrix.
Note: If your Urgency or Impact value is optional on the request type form or issue create screen, then there might be cases where these fields are empty. In this case, make sure that you add a Else if condition that caters for this scenario, for example:
Else if:
1
status = "Priority triage" AND Impact is empty OR Urgency is EMPTY
Then: Transition issue, Low.
Was this helpful?