Automation for Jira is a popular tool to get your team automated by creating additional workflows, rules, and processes.
...
Go to Automation for Jira → Automation Rules
Click Create Rule
Set When: New Trigger
Choose Issue transitioned
Choose from status (e.g. Backlog) and to status (e.g. Selected for Development)
Save
Add component New Action
Set New Action
Choose Set entity property
Choose Entity type: Issue
Set Property Key
Code Block com.railsware.SmartChecklist.checklist
Add checklist template in Markdown formatting as the property value and add the following in the beginning:
Code Block {{issue.fields.Checklists}}
...
Choose the trigger Issue created
Choose the action Create sub-tasks
List subtasks you need
Click Add fields - your subtask will be converted to a separate action step
Choose Same Project to be sure the sub-task is not lost
Add "Checklists" custom field from Choose fields to set
Then add checklist items using checklist Markup formatting. Check the detailed guide.
Save and publish the Automation Rule
Now when you create a Jira issue new sub-tasks will be created automatically
Click on the one that contains the checklist - see it's rendered with Smart Checklist add-on
Add Checklist to Service Management tickets for certain Request types (not a JIRA issue type)
Panel | ||
---|---|---|
| ||
☝🏻NOTE: In Service Management |
...
projects, issue types can have multiple request types. To be sure that you specify the right condition in the automation rule – check whether you want to add a Checklist to the Issue type or Request type. Below, we’ll demonstrate how to add a checklist to the “Service Request” issue type with the “Get IT help” request type. |
You would need to check what issue type you have for "New User AccountGet IT help" requests
and And then create an Automation rule for this specific issue type.
E.g. If you have a Request Type called "Get IT help" and it has "Service Request" issue type:
In Automation, you would need to create a rule that would add a checklist to all the new “Get IT help” requests of "Service Request" issue type
Set Trigger. When: Issue Created
Set Condition. If: Issue matches JQL
'Service Request'Code Block issuetype =
"Service Request" AND "Customer Request Type" = "Get IT help"
Set Action. Then: Set Issue Property
Code Block com.railsware.SmartChecklist.checklist
And set the value of the checklist you need
...