How do I create an automation rule where when if I update the epic summary field - the user stories under the epic have part of the epic summary as smart value and part is text which is different for each user story.
Couple of user stories below for example:
1 - Requirements Gathering - {{issue.Summary}}
2 - Epic Planning - {{issue.epic.Summary}} (this user story is branched thats why the smart is different)
Please let me know if there is a way for when i update the epic summary - all the user stories get updated with the latest epic summary (but the first part of the text remains the same)
Hi @ANISH TANEJA - So if I understand correctly, you want a replaceable bit of text in the child issue summary that can be changed every time the Epic Name is changed?
Here's how you can do it:
{{triggerIssue.Epic Name}} - {{summary.substringAfter(" - ")}}
If you don't already have it, you probably want a second rule that triggers on Epic Link field changing so that stories automatically inherit the Epic Name as they're added to the Epic.
Hi @Mark Segall yes, you got it right.
Just one change here, if the epic name in the child issue summary is after the text, will the below smart value text work?
{{summary.substringBefore(" - ")}} - {{triggerIssue.Summary}}
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.
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.