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
The Lookup clause below is causing an error when the Epic titles contains spaces:
issuetype in (Story) and "Epic Link" = {{issue.epic name}}
Hi @Neil Wills
You can wrap the smart value in quotes to cater for multi-word strings: “Epic Link” = “{{issue.epic name}}”
by adding quotes to “{{issue.epic name}}” does this cast the expression to a string?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is no casting involved. You are simply wrapping the output of the smart value in quotes so that the JQL is valid in the same way that a manual JQL query needs to have values with spaces quoted.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Neil Wills
I believe that epic link is actually a key value, and just renders as the epic name in the user experience views. Please try this instead for your JQL in the lookup issues action:
issueType IN (Story) AND "Epic Link" = {{issue.key}}
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'll experiment, I suspect the issue.key might not match "Epic Link" depending what the value of issue.key is. I used the above solution also.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Gotcha, and...
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.