Contains
I would like a workflow that looks for certain trigger words in the description.
it should look like this:
using this thread for most of this: http://forum.jetbrains.com/thread/YouTrack-2133
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
Please sign in to leave a comment.
rule Words when description.contains("s", opts) && description.changed { }