Home assistant is complaining about one of my automations.
The automation "Garaget - MQTT Garage Door Status" (automation.mqtt_garage_door_status) has an unknown action: mqtt.publish.
This error prevents the automation from running correctly. Maybe this action is no longer available, or perhaps a typo caused it.
The automation in question is working and the action is:
action: mqtt.publish
data:
retain: true
payload: >-
{{ 'open' if states('binary_sensor.garagedorr_status') =='on' else 'closed'
}}
topic: home-assistant/garage/state
Am i missing something here?