Type: Function
Function: CONCAT
Syntax: CONCAT(value1, ..., valueN)` or alternatively the shorthand version `"value1" + "value2"
Description: Returns the string concatenation of all provided values.
Sample usage:
CONCAT("some_", "word_", "and_number_", 5)=>some_word_and_number_5CONCAT("Week number: ", WEEK(created_at))=>Week number: 5when the item has been created during week number 5."Master branch: " + IF(base_ref_branch ~ "master", "Yes", "No")returnsMaster branch: Yesif the pull request targets a branch that contains "master", otherwise returnsMaster branch: No
