Automation are going crazy

Every since few updates ago, many of my automation are triggering for now reason.
Zigbee lights are turning on for no reason.

I re-created the same automation but it still goes crazy.

Anyone else have an idea how to troubleshoot this?

An example:

alias: Office - Bambu lab Printer ZB LED Toggle
description: ""
trigger:
  - platform: state
    entity_id:
      - light.x1c_00m09a322501050_chamber_light
    from: "off"
    to: "on"
    for:
      hours: 0
      minutes: 0
      seconds: 1
  - platform: state
    entity_id:
      - light.x1c_00m09a322501050_chamber_light
    from: "on"
    to: "off"
    for:
      hours: 0
      minutes: 0
      seconds: 1
condition: []
action:
  - if:
      - condition: state
        entity_id: light.x1c_00m09a322501050_chamber_light
        state: "on"
    then:
      - service: light.turn_on
        target:
          entity_id: light.0xa4c138f22ab46638
        data:
          brightness_pct: 40
          kelvin: 5502
    else:
      - service: light.turn_off
        target:
          entity_id: light.0xa4c138f22ab46638
        data: {}
mode: single

What does a trace of the automation say is happening?

Nothing unusual. The trace shows working as expected.