Use case: Service item has a date on the item that is in the future. The automator should only run on the exact date specified.
Problem: Current conditions only allow for X days in the future or X days in the past (see below)

Solve: Add the ability to check the date natively.
Current workaround (in case someone else stumbles on this): I had to get around this by settting up two logical expression nodes with the code below for the requested item AND the current system date/time:
substring({{ticket.ri_234_cf_effective_date_iso}},0,10)
Then I had to setup a condition using a custom expression that uses equalsIgnoreCase({{E1.result}},{{E2.result}}).
While this does work, it adds an activities entry every day until the ticket gets resolved/closed (I set a condition for that immediately) which adds a lot of noise unnecessarily.


