Hello,
Actually, my summary is for example "Back - - Summary"
So, i would likre when my story is filled that my Summary becomes "Back - Storyvalue - Summary"
i find the Automation and the possibility to replace by issue.summary.replace
but when i try this : {{issue.summary.replace("- -", {{issue.Story})}}
==> my summary becomes "Back Summary"
So, how to replace a text value by a custom field value ?
Thanks a lot
With the curly-bracket syntax, you do not need to use them again once inside of a set.
Please try this:
{{issue.summary.replace("- -", issue.yourCustomFieldName)}}
Kind regards,
Bill
Hi @Bill Sheboy ,
I try this but it doesn't work.
but I find an alternative solution to my problem.
like my issue has the same beginning : front - - Title
and i would like to have Impact - Stoprypoint - Title
I put an automation :
{issue.impact} - {issue.storypoint} - {{issue.summary.substring(9)}}
And I have what I want. Thanks a lot
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Bill Sheboy Do you know why your suggestion isn't working? I'm trying to do the same thing but within a long checklist. So I can't use @Aurélie Pilette's suggestion because I still need to leave the rest of the text
I've been racking my brain on this for days
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.