While using send custom email feature of Scriptrunner for JIRA server instance -when giving the condition = ((issue.projectObject.key == 'IV') && (issue.statusObject.name=="Confirm Ownership")) we are getting the warning message, please let us know what is the syntax we are missing.
I think what your refering to is the deprecation of issue.statusObject.
You should be able to change that to the following condition (I've also removed the extra parentheses as they are note required):
issue.projectObject.key == "IV" && issue.status.name == "Confirm Ownership"
Hope this helps.
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.