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
Hello Community,
I created it using the "Create / Clone issue(s) (JMWE app)" post function.
I want to add an issue linked key in the summary title.
Sample; " CD-137 - Ön Analiz Alt Görevi - deneme livaneli 1 - MD-102 "
using which parameters can I add an issue linkedkey in summary
thank you
Hi @serkan_sezer ,
are you trying to include the issue key of the new issue in its own Summary? You can't do that in the template for the Summary field, since when that's evaluated, the new issue doesn't exist yet and thus doesn't have a key...
You need to add the new issue's key to the summary after it has been created. For that, you can use the "Post-creation script" option, with this script:
newIssue.setFieldValue("summary", issue.get("summary") + newIssue.key)
thank you so much, I solved the problem on the first try :)