I create a sub-task and get the summary by copy the summary value from trigger issue and add a few word.
eg. trigger issue summary is " test_wip_finance" ,the ideal new sub-task summary would be "test_wip_legal" .
However, now I got "test_wip_finance_wip_legal“ by using {{triggerIssue.Summary}}_wip_legal . How to exclude the redundant word "_wip_finance"
Hi @S N ,
Have you tried with {{issue.summary.replace("test_wip_finance","test_wip_legal")}}?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried. when issue created, if summary contains "_wip_finance_wip_legal" then edit issue summary with {{issue.summary.replace("_wip_finance_wip_legal", "_wip_legal")}}
but this automaton didn't run when the situation occurs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @S N ,
What is your trigger for the rule?
The {{issue.summary.replace("test_wip_finance","test_wip_legal")}} should be plaved in the action details like this:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @S N ,
In which cases, when a sub-task is created the summary needs to be changed?
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.