2021-12-12 22:28:21 -05:00
|
|
|
# Example configuration.yaml entry
|
|
|
|
- alias: "Update Available Notification"
|
|
|
|
trigger:
|
|
|
|
- platform: state
|
2022-03-31 22:45:15 -04:00
|
|
|
entity_id: binary_sensor.home_assistant_website_update_available
|
2021-12-12 22:28:21 -05:00
|
|
|
from: "off"
|
|
|
|
to: "on"
|
|
|
|
action:
|
|
|
|
- service: notify.notify
|
|
|
|
data:
|
2022-03-31 22:45:15 -04:00
|
|
|
message: "Home Assistant {{ states('sensor.home_assistant_website') }} is available."
|