Type: Function
Function: CONTAINS
Syntax: CONTAINS(list, term|term_list)
Description: Returns true
if the list contains the provided value or any of the provided values (if an array is provided).
Sample usage:
CONTAINS(label_names, "bug")
CONTAINS(label_names, ["bug", "enhancement"])
returnstrue
if the list of labels contains either "bug", "enhancement" or both.CONTAINS(assignee_usernames, "johndoe")
returnstrue
if John Doe was found in the list of assignees, otherwise returnsfalse
.