home-assistant.github.io/source/_cookbook/notify_if__new_ha_release.markdown
2016-07-17 13:08:02 +02:00

791 B

layout title description date sidebar comments sharing footer ha_category
page Send notification if new Home Assistant release Basic example of how to send a notification if a new Home Assistant release is available 2016-07-17 10:00 true false true true Automation Examples

The following example sends a notification via XMPP if a new Home Assistant release is available:

notify:
  - platform: xmpp
    name: jabber
    sender: sender@jabber.org
    password: !secret xmpp_password
    recipient: recipient@jabber.org

automation:
  - alias: Update notifications
    trigger:
      - platform: state
        entity_id: updater.updater
    action:
      service: notify.jabber
      data:
        message: 'There is a new Home Assistant release available.'