#Sun-Based Automations Triggering but not Completing Action?

1 messages · Page 1 of 1 (latest)

split bough
#

I made a few automations recently to change my living room lights based on sunrise and sunset. The weird thing is, Home Assistant reports that they're triggering, but they don't actually do the actions I set. All my other automations that aren't sun-based trigger their actions fine. This is an example of one of them:

alias: Sun Living Room Lights - Day
description: Turns off the Living Room lights 30 minutes after the sun rises.
triggers:
  - trigger: sun
    event: sunrise
    offset: "00:30:00"
conditions: []
actions:
  - action: light.turn_off
    metadata: {}
    data: {}
    target:
      area_id: living_room
mode: single

Does anyone know what could be causing this?