Release: alert hygiene batch + UPS shutdown chain (dry-run) + restore runbook #3

Merged
reachableceo merged 11 commits from dev into release 2026-09-06 12:21:42 +00:00
Showing only changes of commit b06ef7dbf0 - Show all commits
+7 -3
View File
@@ -30,14 +30,18 @@ jobs:
# Real load validation: boots Home Assistant against the repo config and # Real load validation: boots Home Assistant against the repo config and
# proves HA can parse + set up every integration (yamllint only proves the # proves HA can parse + set up every integration (yamllint only proves the
# YAML parses; this catches unknown keys, bad Jinja, schema drift). # YAML parses; this catches unknown keys, bad Jinja, schema drift).
# Pinned to the version the box runs. Stub secrets are CI-only fixtures # Pinned to the HA version the box runs; HA 2026.8 needs python 3.13 and a
# (tests/fixtures/secrets-stub.yaml) — never present on the live box. # glibc debian base (the runner mounts a glibc node for checkout — alpine
# cannot exec it, first CI run proved that in 12 seconds).
# Stub secrets are CI-only fixtures — never present on the live box.
config-check: config-check:
runs-on: ultix runs-on: ultix
container: container:
image: homeassistant/home-assistant:2026.8.3 image: python:3.13-bookworm
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: install homeassistant 2026.8.3
run: pip install --quiet homeassistant==2026.8.3
- name: homeassistant check_config - name: homeassistant check_config
run: | run: |
cp tests/fixtures/secrets-stub.yaml secrets.yaml cp tests/fixtures/secrets-stub.yaml secrets.yaml