Automation- Trace- Error in describing trigger:

It’s a bug that will be fixed in the next release.

If you want to eliminate the error message now, simply update your automation’s syntax.

triggertriggers
conditionconditions
actionactions

platformtrigger
serviceaction


- id: 'driveway_person_presence'
  alias: Driveway person Presence
  description: Turns on driveway light when persons are detected in the driveway.
  triggers:
    - id: person_entered_zone
      trigger: state
      entity_id: binary_sensor.driveway_zone_person_occupancy
      from: "off"
      to: "on"
  conditions:
    - condition: sun
      after: sunset
      before: sunrise
  actions:
    - action: light.turn_on
      target:
        entity_id: light.driveway_light_light
  mode: single