Is there a UI way to do an if/then condition to check if the action is executing on a specific date? e.g. 10/31 every year or 12/25 etc...
I know i could do this with a template but wondered if there was a UI method
if:
- condition: template
value_template: "{{ now().month == 10 and now().day == 31 }}"
then: [ DO STUFF ]