So,
Looking at this: Splitting up the configuration - Home Assistant, I got a wild hair and decided to try to “organize” my automations. Having some 1000 lines of text in configuration.yaml just hurt my head.
There aren’t that many, 25 I guess.
I inserted
“automation: !include_dir_merge_list automations/”,
into configuration.yaml create the automations folder, and then went moving copying each the automations from confiigurations.yaml into separate .yaml files under the /automations folder.
Rebooting, HA sees all my automations, but…
Opening any one of them, I’m getting:
“This automation cannot be edited from the UI, because it is not stored in the automations.yaml file, or doesn’t have an ID.”
This particular automation looks like this:
- id: tv_mode_on
alias: "TV Mode - Lights On"
triggers:
- trigger: state
entity_id: remote.bravia
to: "on"
actions:
- action: script.evaluate_bulb_state
So, there is an id, but HA is not seeing it. This is what it looks like in settings->automations-> edit in yaml:
And, I am unable to edit the yaml in “settings->automations-> edit in yaml”, thus the screen grab
The only way to edit it is with Studio Code Server, or the inbuilt editor.
Any idea what the issue is here?
Thank you

