Hi,
i need to edit a value based on a smart value result.
i have an edit action where
{{#issue.issuelinks}}{{#if{{equals(type,"blocks")}} {{inwardissue.key}}{{/}}{{/}}
however, the condition isnt working!!
i tried it as simple as {{#if{{equals("2","2")}} x {{/}} and couldnt get to print x.
where am i missing it?
@ben friedman absolutely no idea why, but you need to add spaces in front of `if` and the closing `/`
{{ #if{{equals("2","2")}} x {{ /}}
A comment in the following article led me to this strange one: https://community.atlassian.com/t5/Automation-articles/New-automation-smart-values-in-Jira-Cloud/ba-p/1402775
Hi @Hauke Bruno Wollentin -- Welcome to the Atlassian Community!
Thanks for that reminder about the spacing, and... your link seems to have some extra chars making it fail. Here's one that works:
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.
Based upon the way the JSON/smart values are structured for links, I am unclear how you can do that directly in conditional logic: the link type appears to be in a separate node above the list of linked issues. You might be able to use string functions to put the entire string into a created variable and then use string functions with a regular expression to parse it.
Or...have you considered using JQL with LookupIssues, and then test the count/process the remaining issues? Something like:
issue IN linkedIssues({{issue.key}}, "blocks")
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.
Validate your expertise in managing Jira Service Projects for Cloud. Master configuration, optimize workflows, and manage users seamlessly. Earn global 🗺️ recognition and advance your career as a trusted Jira Service management expert.
Get Certified! ✍️Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.