{{#and (exists issue.summary) (compare issue.summary != "Test")}}
<!-- this will be executed if the issue summary is set but different then "Test"-->
{{/orand}}
Expand
title
Modify a datetime and compare it
Code Block
language
xml
{{setVariable "14DaysAgo" (subtractDay now 14)}}
{{#if (isBeforeDay issue.created.raw 14DaysAgo)}}
<!-- this will be executed if the issue was created more than 14 days ago -->
{{/if}}