After the update to 86.4 i have this error:
Invalid config for [automation]: [minutes] is an invalid option for [automation]. Check: automation->trigger->;0->;minutes. (See /config/configuration.yaml, line 197). Please check the docs at https://home-assistant.io/components/automation/
i know the time trigger has change… i update this but where is the fault?
my conf:
- alias: Disable Home
trigger:
- platform: time
at: '09:00:00'
condition:
condition: state
entity_id: input_boolean.alarm_clock_status
state: 'on'
action:
service: scene.turn_on
entity_id: scene.bye
id: ff9510db8525405e90007c784b124891
- alias: Update Available Notifications
trigger:
platform: state
entity_id: updater.updater
action:
service: notify.telegram
data:
message: Update verfügbar!
id: 15e6f971630147b88ea8e42ec0bf453d
- alias: Set Brighttheme
initial_state: true
trigger:
- platform: time
at: '06:00:00'
action:
- service: frontend.set_theme
data:
name: default
id: b01034caf2ae4b1ab1c46f8ba27334cf
- alias: Set Darktheme
initial_state: true
trigger:
- platform: time
at: '21:45:00'
action:
- service: frontend.set_theme
data:
name: night
id: 37ded4ba38ef4e428e1fa971afeddced
- alias: Sonos Lautstärke
trigger:
platform: state
entity_id: input_number.sonos_lautstaerke
action:
- service: media_player.volume_set
data_template:
entity_id:
- media_player.schlafzimmer
- media_player.wohnzimmer
- media_player.kueche
volume_level: '{{ trigger.to_state.state }}'
id: fbf1f9025edb4b5fafcad6a269e5864c
- id: Sonos formatieren
alias: Sonos formatieren
initial_state: true
hide_entity: true
trigger:
platform: time
at: '16:00:00'
condition:
condition: state
entity_id: media_player.wohnzimmer
state: paused
action:
service: script.turn_on
entity_id: script.format_sonos
- id: Wohnzimmer Bewegungsmelder
alias: Wohnzimmer Dining Motion Sensor
trigger:
- platform: state
entity_id: sensor.wohnzimmer_motion_sensor
to: 'on'
condition:
- condition: time
after: '23:00:00'
before: '06:00:00'
action:
- service: script.turn_on
data:
entity_id: script.wohnzimmer_motion
- id: '1538593011993'
alias: Willkommen Zuhause
trigger:
- entity_id: device_tracker.schmidi
from: not_home
platform: state
to: home
condition:
- after: '15:00:00'
before: '22:00:00'
condition: time
action:
- data:
message: Willkommen Zuhause
service: notify.telegram
- data:
entity_id: media_player.kueche
message: Willkommen Zuhause Sir
service: tts.google_say
- delay: '2'
- service: script.radio_energy
- id: alarm_1_weekdays
alias: Wake me up (week)
initial_state: 'on'
trigger:
- platform: time_pattern
minutes: /1
condition:
- condition: state
entity_id: input_boolean.alarm_1_weekday
state: 'on'
- condition: time
weekday:
- mon
- tue
- wed
- thu
- fri
- condition: template
value_template: '{{ now().strftime("%H:%M") == states.sensor.alarm_1_time.state
}}'
action:
service: script.turn_on
entity_id: script.wecker
- id: alarm_1_weekend
alias: Wake me up (weekend)
trigger:
- platform: time_pattern
minutes: /1
condition:
- condition: state
entity_id: input_boolean.alarm_1_weekend
state: 'on'
- condition: time
weekday:
- sat
- sun
- condition: template
value_template: '{{ now().strftime("%H:%M") == states.sensor.alarm_1_time.state
}}'
action:
event: alarm_1_event
event_data:
name: Alarm 1 Triggered
type: Weekends
the second (labor) HA-System has no error with this automation?