auto: 2026-05-24T06:20:04Z

This commit is contained in:
2026-05-24 08:20:04 +02:00
parent f98ebfec09
commit c30b986da7
5 changed files with 36 additions and 3 deletions
+1 -1
View File
@@ -1 +1 @@
2026.5.3 2026.5.4
+1 -1
View File
@@ -71,7 +71,7 @@
}, },
{ {
"id": "993a69f87387426cb5712bbe8382555e", "id": "993a69f87387426cb5712bbe8382555e",
"url": "/hacsfiles/Bubble-Card/bubble-card.js?hacstag=680112919320", "url": "/hacsfiles/Bubble-Card/bubble-card.js?hacstag=680112919321",
"type": "module" "type": "module"
}, },
{ {
+1 -1
View File
@@ -83,7 +83,7 @@
"end_date": null, "end_date": null,
"repeat_type": "repeat", "repeat_type": "repeat",
"name": null, "name": null,
"enabled": true "enabled": false
} }
], ],
"tags": [] "tags": []
+24
View File
@@ -61,3 +61,27 @@ notify:
url: https://gotify.nuclide.systems url: https://gotify.nuclide.systems
token: AVZyObLPatWGE_Q token: AVZyObLPatWGE_Q
verify_ssl: true # optional, default true 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.*
+9
View File
@@ -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