Is there a way to have a workflow condition that checks if a string contains a certain value within the field? For example if we are looking for contains "good", the string "this is a good build" should return true.
Hello,
You could use the Power Scripts add-on:
You could add a condition like this:
if (contains(
#{custom field name}
,
"good"
)
) {
return true;
}
return false;
You can read more about conditions here:
https://confluence.cprime.io/display/JJUPIN/Customizing+workflows
Not out of the box, to my knowledge. You would need something like ScriptRunner or JMWE to include a scripted workflow condition or something similar.
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.