issueType = Epic AND status in ('Done') AND issue in linkedIssues({{issue.key}}, 'is implemented by'))
so the above is my jql statement in my jira automation lookup issues action and i'm getting the following warning
Invalid JQL
Error parsing template: smart values {{parent link}}, {{epic link}} and {{epic}} are deprecated. Please use {{parent}} instead.
the moment i remove 'issueType = Epic' from my jql, it works fine
fairly certain the regex to flag this error is wrong since i should be able to search for epic issueType, i can't search for parent issue type in this case. the warning is blindly searching for the word epic to flag the error
*edit* noticed that jql that doesn't have linkedIssues seems to be fine with epic in it's name
This seems to be fixed now and we're free to use "EPIC" without any problems,
Having the same issue:
Can't use {{issue.parent.epic.summary}} anymore
Is this the cause?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is related to it but it feel like the validation fails whenever you mention Epic and not only as a smart values.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, seems to be some kind of bug - worked for us fine previously and this started happening to us too now. I guess these smart values were removed from Automation and whenever you mention these keywords in jql, it just throws error.
As a temporary workaround, we used IDs of those entities. So for your case, try using ID of Epic issuetype instead of its name. So for example:
issueType = 10000 AND status in ('Done') AND issue in linkedIssues({{issue.key}}, 'is implemented by'))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Having similar issues with automations, seems like whenever I mention Epic it just fails validation
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
same here, no smart value will work for us when you have "Epic" in the JQL
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.