Problem Statement:
So, I start with a list of issues in upcoming release where issues are not in Done status and I am having the "trigger" process them in bulk so I can send the list in email. This part is good
Then I start the action to send email with this list of issues.
While doing so, I am checking if Description is empty.
Issue: My If condition in my email is not catching that the description field is empty.
My syntax is as follows:
{{#if(issue.fixVersions.description.isEmpty)}}
Please update the field.. some text
{{/}}
For some reason Jira thinks that the field is populated even though its blank.
Is this the right way to check if the description field is populated?
I think I figured out the correct syntax:
Instead of checking isEmpty like in my post --
{{#if(issue.fixVersions.description.isEmpty)}}
Please update the field.. some text
{{/}}
Below syntax seems to work:
{{#if(not(exists(issue.fixVersions.description)))}}
Please update the field.. some text
{{/}}
Hello @Kalyan Sattaluri
Would you be able to send a screenshot of the whole automation with the smart values, please?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.