I'm curious if this condition
- condition: time
before: '23:30:00'
in the below snippet from a larger automation, will apply to only the action right after it or both action below it...
actions:
- choose:
- conditions:
- condition: trigger
id:
- door_left_opened
sequence:
- repeat:
sequence:
- condition: time
before: '23:30:00'
- action: notify.notify_to_all_devices
metadata: {}
data:
message: TTS
data:
priority: high
ttl: 0
media_stream: alarm_stream
tts_text: WARNING! Door is open
- action: notify.notify_to_all_devices
metadata: {}
data:
title: Door Open
message: WARNING! Door is open
data:
car_ui: true
channel: DoorOpenAlert
push:
sound: Alert_SpartanConnecting_Haptic.caf
- delay:
hours: 0
minutes: 0
seconds: 10
milliseconds: 0
while:
- condition: state
entity_id: binary_sensor.door_sensor_contact
state: 'on'