diff --git a/.HA_VERSION b/.HA_VERSION index ee73ae9..bb290cc 100644 --- a/.HA_VERSION +++ b/.HA_VERSION @@ -1 +1 @@ -2026.5.3 \ No newline at end of file +2026.5.4 \ No newline at end of file diff --git a/.storage/lovelace_resources b/.storage/lovelace_resources index 5b34c95..26b2c71 100644 --- a/.storage/lovelace_resources +++ b/.storage/lovelace_resources @@ -71,7 +71,7 @@ }, { "id": "993a69f87387426cb5712bbe8382555e", - "url": "/hacsfiles/Bubble-Card/bubble-card.js?hacstag=680112919320", + "url": "/hacsfiles/Bubble-Card/bubble-card.js?hacstag=680112919321", "type": "module" }, { diff --git a/.storage/scheduler.storage b/.storage/scheduler.storage index efebb10..683ca8e 100644 --- a/.storage/scheduler.storage +++ b/.storage/scheduler.storage @@ -83,7 +83,7 @@ "end_date": null, "repeat_type": "repeat", "name": null, - "enabled": true + "enabled": false } ], "tags": [] diff --git a/configuration.yaml b/configuration.yaml index 72dbc21..752d283 100644 --- a/configuration.yaml +++ b/configuration.yaml @@ -61,3 +61,27 @@ notify: url: https://gotify.nuclide.systems token: AVZyObLPatWGE_Q verify_ssl: true # optional, default true + +prometheus: + namespace: hass + filter: + include_domains: + - sensor + - binary_sensor + - switch + - light + - climate + - weather + - person + - cover + - fan + - automation + - input_boolean + exclude_entity_globs: + - sensor.*_signal_strength + - sensor.*_rssi + - sensor.*_lqi + - update.* + - button.* + - select.* + - number.* diff --git a/scripts/git-push.sh b/scripts/git-push.sh new file mode 100755 index 0000000..0e52775 --- /dev/null +++ b/scripts/git-push.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# Daily push of /config to fkrebs/home-assistant-config. +# .gitignore handles secret allowlist. See /docs/infra/config-to-git.md. +set -e +cd /config +git add -A +git diff --cached --quiet && exit 0 +git commit -q -m "auto: $(date -u +%Y-%m-%dT%H:%M:%SZ)" +git push -q origin main