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.