Tommatheussen / Home-Assistant-Configuration

:house_with_garden: My home assistant configuration!
32 stars 7 forks source link

Editing automations from the UI #39

Closed JorgeAnzola closed 3 years ago

JorgeAnzola commented 3 years ago

Hello! I have a similar setup to yours, I just accepted the fact that I can't edit automation as they are not in the automations.yaml but I never dug it about it. You also can't edit them? Or there's a workaround? Thanks!

Tommatheussen commented 3 years ago

Lately what I've been doing is split up the automations like so:

automation: !include ../automations.yaml
automation split: !include_dir_merge_list ../automations

this allows me to have automations in YAML (for the ones that are more complex) in the automations directory. And it'll load the automations.yaml file to create and edit the automations in that one via the UI.

JorgeAnzola commented 3 years ago

That's awesome! Thanks for sharing that