Automation does not run in 2022.11.2

Hi,

I have a problem with a few automations that should be triggered by IKEA ZigBee buttons.

My observations:

  • They work in 2022.10.5
  • They don’t run as expected in 2022.11.2
    • I don’t see any errors in the log
    • I see the button event when editing the automation
    • I can run the automation from the web interface

Reverting home assistant back to 2022.10.5 and they work again.

Any ideas?

Here is the code of one of the automations:

alias: Coming Home (Automatisches Licht)
description: ""
trigger:
  - device_id: 1xxxxxxxxxx
    domain: deconz
    platform: device
    type: remote_button_short_press
    subtype: turn_on
condition: []
action:
  - parallel:
      - device_id: 2xxxxxxxxxxx
        domain: switch
        entity_id: switch.bahnhofsuhrzeiger
        type: turn_on
      - service: script.dlf_nova_im_wohnzimmer
        data: {}
      - choose:
          - conditions:
              - condition: numeric_state
                entity_id: sensor.helligkeit_wohnzimmer
                below: input_number.lightlevel_dimm
            sequence:
              - scene: scene.wohnzimmer_fernsehlicht
              - service: light.turn_on
                target:
                  device_id: 3xxxxxxxxxx
                data:
                  brightness_pct: 100
              - delay:
                  hours: 0
                  minutes: 3
                  seconds: 0
                  milliseconds: 0
              - scene: scene.wohnzimmer_fernsehlicht
        default: []
mode: single

Thanks

Installed to 2022.11.3 and now it’s working again as expected.