Would be great if the hass.io dashboard would notify you of updates like it does with HA and AddOns. Or is there anyway to create a sensor to show the latest version so an automation could be set up to notify you? I often find out when there is an update a long time after it is released as I don't always check the system section of the hass.io panel.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Well, six other users upvoted the comment so it seems I'm not alone in asking. But feel free to close this if there is no intent to add this feature. Just let us know one way or the other, OK?
I would like such a feature
You may be able to set a sensor to check the releases page of github, I think there may even be an example of this somewhere on the HA website
@DeviousPenguin - What a great idea! I've never really thought about the github sensor much as I am not an active dev. But this provides a wealth of info and I should be able to parse whatever I want from it to get to the goal of notifications.
For anyone else interested, I simply added the following to my sensors config:
- platform: github
access_token: !secret github_access_token
repositories:
- path: 'home-assistant/home-assistant'
- path: 'home-assistant/hassos'
- path: 'home-assistant/hassio'
after following the setup instructions on the component page.
Thanks for a great alternative!
You could do it like this:
https://github.com/frenck/home-assistant-config/blob/master/config/automations/system/upgrade_alert.yaml
Thanks for a great alternative!
No problem, I guess you could also add the repos for any custom components you are using also.
@iantrich That would work for Hass.IO but I already have that covered. I'm looking for updates to HassOS itself. But thanks!
Ah. I totally didn't read properly 馃槣
This is done, needs an update of the Hass.io supervisor
Is there a way to read the current installed version of HassOS?
I do it this way with a command line sensor:
- platform: command_line
command: "cat /config/.HA_VERSION"
name: Installed Version
But that is HA not HassOS?
@f00dagi There is not at this point in time, features for that are planned, but not available yet.
Most helpful comment
@DeviousPenguin - What a great idea! I've never really thought about the github sensor much as I am not an active dev. But this provides a wealth of info and I should be able to parse whatever I want from it to get to the goal of notifications.
For anyone else interested, I simply added the following to my sensors config:
after following the setup instructions on the component page.
Thanks for a great alternative!