I upgraded from 0.41 to 0.51 yesterday unfortunately my log file now gives me the following error and none of my automations work:
ERROR (MainThread) [homeassistant.config] Invalid config for [automation]: [after] is an invalid option for [automation]. Check: automation->trigger->0->after. (See /home/homeassistant/.homeassistant/configuration.yaml, line 126).
The line number is wrong as my automation.yaml only has a few lines in, nowhere near 126! Anyway, here is my automation that worked fine with version 0.41:
- alias: '#1 - Turn on at 15:30 on weekdays'
trigger:
platform: time
after: '15:30:00'
condition:
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
action:
- service: climate.set_temperature
data_template:
entity_id: climate.thermostat1
temperature: '{{ states.input_slider.desired_temp_occupied.state }}'
operation_mode: Heat
Could someone tell me why [after] is now an invalid option and what to replace it with?