Send notification if new Home Assistant release
The following example sends a notification via XMPP if a new Home Assistant release is available:
notify:
- platform: xmpp
name: jabber
sender: [email protected]
password: !secret xmpp_password
recipient: [email protected]
automation:
- alias: "Update notification"
trigger:
- platform: state
entity_id: binary_sensor.updater
from: "off"
to: "on"
action:
- service: notify.jabber
data:
message: "There is a new Home Assistant release available."
You can use templates to include the release number of Home Assistant if you prefer. The following example sends a notification via Pushbullet with the Home Assistant version in the message.
notify:
- platform: pushbullet
api_key: "YOUR_KEY_HERE"
name: pushbullet
automation:
- alias: "Update notification"
trigger:
- platform: state
entity_id: binary_sensor.updater
from: "off"
to: "on"
action:
- service: notify.pushbullet
data:
title: "New Home Assistant Release"
target: "YOUR_TARGET_HERE" #See Pushbullet integration for usage
message: "Home Assistant {{ state_attr('binary_sensor.updater', 'newest_version') }} is now available."
Help us to improve our documentation
Suggest an edit to this page, or provide/view feedback for this page.
Suggest an edit to this page, or provide/view feedback for this page.