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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.