Hi,
I’m want to check if a certain day is true as working day.
The workday.check_date gives me a response but i don’t know how to handle it
{“binary_sensor.workday_sensor”:{“workday”:true}}
I hoped is was a simple as this
- action: workday.check_date
data:
check_date: "2025-03-18"
target:
entity_id: binary_sensor.workday_sensor
response_variable: check_date
- if:
- condition: template
value_template: "{{ check_date }} "
then:
- action: notify.mobile_app_sm_f731b
metadata: {}
data:
message: "It worked"
But just notifying the check_date variable gives me the output from above and there i’m lost on what to do with it.
Thanks!