IF-ELSE in TRIGGER ACTION

Hey Mihir,

Inverted section in mustache uses boolean for its evaluation then it will loop through the object the variable holds:

Example ::
JSON:

{
    "repo": ['hello', 'hi']
}

Output:

hellohi

but what I needed is this condition:

if repo[i].value == 'hi':
    print(repo[i])

This kind of comparison is not possible in mustache alone, I would suggest, it would be better if we can access the trigger condition variable.