I want to create an automation rule, that should to the following rules.
when: the issue is created
conditions:
1 -> if the type is Task
1.1 -> If the summary / name of that issue contains "Create tasks for XXX
then create the below tasks (not subtasks)
1. XXX Analysis
2. XXX Test
3. XXX Sign Off
Hello @Ragavendran S
This is one of the most straight forward rules to implement. So if you havent done this before, Instead of us giving you exact steps, its great time for you to do so.
Give it a shot, share screenshots of your rule and audt log if you are stuck and we can help.
If you need assistance getting the value of XXX from the Summary in the Task that is triggering the rule and putting it into the Summary of the Tasks you are creating from the rule, I think setting the following as the Summary on the Tasks (using a smart value) should get you what you're looking for, assuming that the Task starts with "Create tasks for XXX".
{{issue.summary.substring(17)}} Analysis
{{issue.summary.substring(17)}} Test
{{issue.summary.substring(17)}} Sign Off
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Matt Parks , actually i stuck where i wanted to fetch the name of Task (xxx). And with your way, i have achieved this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks @Kalyan Sattaluri with your trick with JQL for summary. I can able to trigger when i want to create a list of tasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.