Two items not showing in group: Groups.yaml issues

I have a few automations set up, like these:

- id: sconce_lights_on_at_sunset
  alias: Sconce Lights on at Sunset
  trigger:
  - platform: sun
    event: sunset
  condition: []
  action:
  - data:
      entity_id: switch.outdoor_front_light_switch
    service: switch.turn_on

- id: sconce_lights_on_at_five_am
  alias: Sconce Lights on at 5AM
  trigger:
  - platform: time
    at: '4:59:59'
  condition: []
  action:
  - data:
      entity_id: switch.outdoor_front_light_switch
    service: switch.turn_on

I have a group set up, like this:

other_automations:
  name: Other Automations
  entities:
    - automation.camera_west_yard_auto_off
    - automation.camera_back_yard_auto_off
    - automation.camera_west_yard_auto_on
    - automation.camera_back_yard_auto_on
    - automation.set_the_new_log_level
    - automation.post_light_on_at_sunset
    - automation.post_light_off_at_sunrise
    - automation.sconce_lights_off_at_midnight
    - automation.sconce_lights_off_at_sunrise
    - automation.sconce_lights_on_at_five_am
    - automation.sconce_lights_on_at_sunset

but for some damn reason, the sconce_lights_on_at_five_am doesn’t show up in the “Other Automations” group! What gives? I have the same problem with the set_the_new_log_level and I cannot figure it out. Everything else shows up except those two specific ones.

Thanks,
-Greg

I think the alias is making the automation.xxxxx name, not the id.
So it would be

- automation.sconce_lights_on_at_5am

you can check that in the States Developer Tool.
The other one works because, by chance, it is the same :slight_smile:

2 Likes