Hi, I have a listener set up to Clone & Link an issue using Scriptrunner.
It will not fire when i add this simple condition -
issue.issueTypeObject.name == 'Sub-task' && issue.summary.contains "SOA"
If i use either of the 2 parts of the query as a condition it works fine i.e.
issue.issueTypeObject.name == 'Sub-task'
issue.summary.contains "SOA"
I have tried parenthesis and all to no avail.
What am i doing wrong?
answered my own question. I needed the following
issue.issueTypeObject.name == 'Sub-task' && issue.summary.contains("SOA")
Thanks anyway
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.