Is it possible to use smart values or smart variables within the JQL statement used in "Lookup Issues" actions?
I am having trouble doing so.
I have a custom field that is a list of project keys.
I have a custom type that has that field set.
I want to find all instances of this custom type that has that custom field set to a specific value that equals the project key that the object I am creating is within.
So custom smart variable projKey is set to {{issue.project.key}}
How do I then use that smart variable in the jql in a find issues action?
My jql looks like
"Project Key[Dropdown]" = "{{projKey}}"
but it will not validate.
If I instead use a static string that is one of my project keys, the it validates.
"Project Key[Dropdown]" = "Foobar"
Any ideas? Thanks.