You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi everyone,
I'd like to create an automation rule that changes the summary of an automatically created subtask when the summary of the parent task is changed.
The problem now is that I used a value for the names of the subtasks (e.g. {{triggerIssue.summary}} Sample QC).
I already managed to create a rule that works for one subtask. My question now is: How do I have to set the rule that every single subtasks keeps it own name and just the {{triggerIssue.summary}} is changed?
I would be very grateful for help!
Kind regards,
Pauline
Screenshot 1: Automation that creates subtasks automatically
Screenshot 2: Automation that keeps in sync summary of parent and task
Screenshot 3: Configurations of the actions for the first subtask
Hi @Pauline Hild - Since you're using " - " as a delimiter between parent and sub-task, you could do this smart tag to update the sub-task:
{{triggerIssue.summary}} - {{issue.summary.substringAfter(" - ")}}
This will ensure the sub-task is always prepended with the parent issue and retains the original summary (e.g. Sample QC)
Hi @Mark Segall , I have a template created so sub-tasks are automatically put when an issue is created. I need to update the sub-task name when the company's name is updated in the issue. Is there any way to do that?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Fabian Trejo Benitez and welcome to the community!
I would recommend asking this as a separate question so it doesn't get lost in the shuffle. Feel free to tag me on the question so I get notified and I'll be happy to help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mark Segall
thank you very much for your response. I've never worked with smart tags so I just tried to copy the smart tag you supposed into my automation rule.
The screenshot shows what happened but as I am a beginner with smart tags and automation rules I don't know what I have to change to make it work.
Kind regards,
Pauline
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Pauline Hild - I think I see the issue:
Automation 1
Make sure each of your Create Issue components are setup like this:
{{triggerIssue.summary}} - Sample QC
Note - There's a " - " in the sub-task summary in my update. This is important for your second automation because it's looking for that delimiter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Mark Segall
You were right, I added the "-" in all the subtasks and now it works.
Thank you very much for your help, I'm very happy! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.