Honeywell Evohome integration not working

I have a problem with integrating my Evohome system into HA. I tried everything mentioned here, but it does not work. I used text mentioned around for configuration.yaml, it does not work.

I found this in the logs: Logger: homeassistant.components.automation
Zdroj: components/automation/config.py:131
integrace: Automatizace (dokumentace, problémy)
První výskyt: 23:03:16 (1 výskyt)
Naposledy logováno: 23:03:16

Unnamed automation could not be validated and has been disabled: extra keys not allowed @ data[‘evohome’]. Got {‘username’: ‘josef.soltesxxxxxxxx.cz’, ‘password’: ‘xxxxxxxx’} required key not provided @ data[‘actions’]. Got None required key not provided @ data[‘triggers’]. Got None

But I really don’t understand it. Can anyone help?

Make sure your account is working by going to the Honeywell site:

Add your credentials in the configuration.yaml file of Home Assistany by adding:

evohome:
  username: "[email protected]"
  password: "password"

Do you have the latest versions?

I am pretty confident that you have added the following to your configuration.yaml file:

automation: !include automations.yaml

evohome:
  username: josef.soltesxxxxxxxx.cz
  password: xxxxxxxx

… but it is incorrectly indented like so::

automation: !include automations.yaml

  evohome:
    username: josef.soltesxxxxxxxx.cz
    password: xxxxxxxx

Actually, this was completely my BFU fault and ChatGPT actually solved it for me. I was trying to do integration, but skipped a few steps like installing HACS etc. Also, I edited wrong file, not configuration.yaml, but the very first file, which was automations.yaml. Thank you guys.