Hi everyone,
I have a clone of an issue. When transitioning the clone, a post function has to append a new text fragment to a text field in the original (linked) issue.
There are post functions from JMWE which do almost that, but none of those can append to text, they only append to multi-value fields.
Could someone give me an idea?
Hi @FH
you can use JMWE's Set Field of Related Issues post-function, using a Groovy template like this as the Value:
${relatedIssue.get("text field")}
Some text to append
And if you want to just append the value of the same custom field from the current issue to the value in linked issue, you can use this:
${relatedIssue.get("text field")}
${issue.get("text field")}
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.