Frontend: Notification on HassOS updates?

Created on 29 Aug 2018  路  14Comments  路  Source: home-assistant/frontend

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.

supervisor

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:

- 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!

All 14 comments

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!

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

agneevX picture agneevX  路  3Comments

TheZoker picture TheZoker  路  3Comments

SeanPM5 picture SeanPM5  路  3Comments

move[bot] picture move[bot]  路  3Comments

wangyt123ng picture wangyt123ng  路  3Comments