Error-Messages in Log While Starting, what do I have to do?

Hello,

I’m having a bit of trouble finding the cause of the error message.
HA shows me error messages in the log while HA is starting:

Logger: homeassistant.setup
Quelle: setup.py:275
Erstmals aufgetreten: 13:51:06 (2 Vorkommnisse)
Zuletzt protokolliert: 13:51:06

Setup failed for 'action': Integration not found.
Setup failed for 'data': Integration not found.

This I find in the /homeassistant/home-assistant.log

2025-02-12 13:50:55.164 WARNING (MainThread) [homeassistant.helpers.translation] Failed to load integration for translation: Integration 'action' not found.
2025-02-12 13:50:55.166 WARNING (MainThread) [homeassistant.helpers.translation] Failed to load integration for translation: Integration 'data' not found.
2025-02-12 13:50:56.044 ERROR (MainThread) [homeassistant.helpers.translation] Validation of translation placeholders for localized (de) string component.wellbeing.config.step.reauth_validate.description failed: ({'username'} != set())
2025-02-12 13:50:57.371 ERROR (SyncWorker_5) [homeassistant.components.worldtidesinfo.sensor] Location not available
2025-02-12 13:51:06.242 ERROR (MainThread) [homeassistant.setup] Setup failed for 'action': Integration not found.
2025-02-12 13:51:06.243 ERROR (MainThread) [homeassistant.setup] Setup failed for 'data': Integration not found.
2025-02-12 13:51:27.702 ERROR (MainThread) [custom_components.airmusic] Connection error: Cannot connect to host 192.168.3.60:80 ssl:default [Connect call failed ('192.168.3.60', 80)]
2025-02-12 13:51:27.702 ERROR (MainThread) [homeassistant.components.media_player] airmusic: Error on device update!
Traceback (most recent call last):
  File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 738, in _async_add_entity
    await entity.async_device_update(warning=False)
  File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 1318, in async_device_update
    await self.async_update()
  File "/config/custom_components/airmusic/media_player.py", line 230, in async_update
    soup = BeautifulSoup(playinfo_xml, features="xml")
  File "/usr/local/lib/python3.13/site-packages/bs4/__init__.py", line 442, in __init__
    raise TypeError(
        f"Incoming markup is of an invalid type: {markup!r}. Markup must be a string, a bytestring, or an open filehandle."
    )
TypeError: Incoming markup is of an invalid type: None. Markup must be a string, a bytestring, or an open filehandle.

What do I have to do?
What’s the best way to tackle the problem?

Thank’s a lot.

What do I have to do?
What’s the best way to tackle the problem?

Please show your configuration.yaml.

thanks for fast reply


# Loads default set of integrations. Do not remove.
default_config:

# Load frontend themes from the themes folder
frontend:
  themes: !include_dir_merge_named themes

automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml


ssdp:

sensor:
  - platform: whatpulse
    username: XXX
    
  - platform: worldtidesinfo
    api_key: XXXXXXXXXXXXXXXXXXx
    
# Example configuration.yaml entry
#logger:
#  default: info
#  logs:
#    custom_components.Fronius_Solarweb: info

battery_notes:
  enable_autodiscovery: true
  show_all_devices: false
  enable_replaced: true
  default_battery_low_threshold: 10
  battery_increase_threshold: 25
  hide_battery: false
  round_battery: false
   
device_tracker:
  - platform: upc_connect_v2
    host: 192.168.100.1
    username: admin
    password: XXX
    legacy_mode: False
    encrypt_password: True

# https://www.home-assistant.io/integrations/nfandroidtv/    
action: notify.living_room_tv
data:
  title: "Thanks for the water!"
  message: "Ich bin gut"
  data:
    duration: 4
    position: "bottom-left"
    fontsize: "medium"
    transparency: "75%"
    color: "teal"
    interrupt: 0

Remove this. Automations do not go in configuration.yaml but automations.yaml

you found and solved the problem.

I simply blindly copied and pasted from