Skip to content

Instantly share code, notes, and snippets.

@ferdisahin
Created March 18, 2025 06:19
Show Gist options
  • Select an option

  • Save ferdisahin/b613e3e079f0b7b0d82218d63c15de80 to your computer and use it in GitHub Desktop.

Select an option

Save ferdisahin/b613e3e079f0b7b0d82218d63c15de80 to your computer and use it in GitHub Desktop.
Home Assistant Auto Update
blueprint:
name: Auto Update Home Assistant
description: Automatically checks and installs updates for Home Assistant Core, OS, Supervisor, and all installed add-ons at a scheduled time.
domain: automation
input:
update_time:
name: Update Time
description: Time when updates should be installed
selector:
time:
trigger:
- platform: time
at: !input update_time
condition: []
action:
- service: update.install
target:
entity_id: all
- service: hassio.supervisor_update
- service: hassio.os_update
- service: hassio.addon_update
data:
addon: all
mode: single
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment