Zum Inhalt springen
Alles Automatisch

Telegram: Update Notification

Benachrichtigt per Telegram wenn ein Home Assistant Core/OS/Supervisor oder HACS Update verfügbar ist.

Entitäten:updatetelegram_bot

Themen:BenachrichtigungWartung

Aktualisiert: 4. April 2026

Was brauchst du dafür?

Integrationen
  • Telegram Bot
Telegram: Update Notification
# Entity-IDs sind anonymisiert. Ersetze sie durch deine eigenen.
# Beispiel: light.dein_wohnzimmer_licht -> light.wohnzimmer_deckenlampe
# Telegram: Update Notification
# Benachrichtigt per Telegram wenn ein Home Assistant oder HACS Update verfuegbar ist.

alias: "Telegram: Update Notification"
description: ""

# --- Trigger: Update-Entity wird verfuegbar ---
triggers:
  # Home Assistant Core, OS oder Supervisor Update
  - platform: state
    entity_id:
      - update.home_assistant_core_update
      - update.home_assistant_operating_system_update
      - update.home_assistant_supervisor_update
    to: "on"
    id: hass

  # HACS Update
  - platform: state
    entity_id:
      - update.hacs_update
    to: "on"
    id: hacs

conditions: []

# --- Aktionen: Telegram-Nachricht je nach Update-Typ ---
actions:
  - if:
      - condition: trigger
        id: [hass]
    then:
      # Home Assistant Update
      - action: telegram_bot.send_message
        data:
          message: "Home Assistant Status: Es gibt ein neues Home Assistant Update."
    else:
      # HACS Update
      - action: telegram_bot.send_message
        data:
          message: "Home Assistant Status: Es gibt ein neues HACS Update."

mode: single