Contains

I would like a workflow that looks for certain trigger words in the description.


it should look like this:

for each issue in project.issues { 
  if (description.text.contains("Disc Springs", ignoreCase)) { 
   issue.Department="Disc Springs";
  } 
}





using this thread for most of this: http://forum.jetbrains.com/thread/YouTrack-2133
0
1 comment
Please try this:
rule Words
 
when description.contains("s", opts) && description.changed { 
  
}
0

Please sign in to leave a comment.