Very odd problem with turning lights on and off

I have two automations for turning on a few lights in the morning. The code is below. The issue/problem/bug is this:
A) Bedroom Lights has two light entities
B) Turn on causes both lights to turn on. (Might be turning one of from time to time that I have not noticed)
C) Turn off only turns off one of these lights. does not seem to be consistent on turning one or both lights off. The light left on is always the same light.
The lights are both Phillips Hue bulbs being controlled on ZHA.

Greg

Turn Off

action: light.turn_off
metadata: {}
target:
  entity_id: light.bedroom_light
data:
  transition: 15

Turn On

action: light.turn_on
metadata: {}
target:
  entity_id: light.bedroom_light
data:
  transition: 15

Presumably light.bedroom_light is a group? HA or Zigbee?

That is correct bedroom_light is a helper group in HA.

Create a helper so both entities act and are renamed as the newly created entity.

A group IS a helper. He’s already created that & it was called light.bedroom_light, same as referenced in the automation.

@GregoryWest delete the HA group & try creating a zigbee group instead. There are multiple posts in this forum where some messages get missed when targeting HA groups, though I don’t remember anyone running into this with only 2 entities.

If that fails, try removing the transition from your automations. Maybe there’s some kind of hiccup with how transitions are handled in groups.