Compare commits

..

5 Commits

Author SHA1 Message Date
github-actions
fabf324ee3 GitHub bot: changelog [nobuild] 2026-04-02 08:51:52 +00:00
Alexandre
9c3ad22217 Update config.yaml 2026-04-02 10:49:55 +02:00
Alexandre
aaa244b460 Merge pull request #2624 from alexbelgium/copilot/fix-addon-unbound-variable
[WIP] Fix unbound variable issue in GitHub Actions workflow
2026-04-02 07:13:03 +02:00
copilot-swe-agent[bot]
332401bb5c fix: move ADDON_LOWER assignment inside while loop to fix unbound variable error
Agent-Logs-Url: https://github.com/alexbelgium/hassio-addons/sessions/fa06596a-da9b-4c3b-a9e0-76b955371d3e

Co-authored-by: alexbelgium <44178713+alexbelgium@users.noreply.github.com>
2026-04-02 05:12:48 +00:00
copilot-swe-agent[bot]
40602ffc75 Initial plan 2026-04-02 05:12:05 +00:00
3 changed files with 4 additions and 4 deletions

View File

@@ -28,9 +28,9 @@ jobs:
TEXT="${ISSUE_TITLE} ${ISSUE_BODY}"
TEXT_LOWER="$(printf '%s' "$TEXT" | tr '[:upper:]' '[:lower:]')"
ADDON_LOWER="$(printf '%s' "$addon" | tr '[:upper:]' '[:lower:]')"
while IFS= read -r addon; do
ADDON_LOWER="$(printf '%s' "$addon" | tr '[:upper:]' '[:lower:]')"
[ -z "$ADDON_LOWER" ] && continue
if [[ "$TEXT_LOWER" == *"$ADDON_LOWER"* ]]; then

View File

@@ -1,3 +1,5 @@
## 3.2.0-4 (02-04-2026)
- Minor bugs fixed
## 3.2.0-3 (2026-03-31)
- Fix addon never starts: symlink contents inside /opt/data instead of replacing the Docker VOLUME directory

View File

@@ -68,8 +68,6 @@ devices:
environment:
DATA_DIR: "/config"
image: ghcr.io/alexbelgium/maintainerr-{arch}
ingress: true
ingress_stream: true
init: false
panel_icon: mdi:movie-search
map:
@@ -89,5 +87,5 @@ schema:
TZ: str?
slug: maintainerr
url: https://github.com/alexbelgium/hassio-addons/tree/master/maintainerr
version: "3.2.0-3"
version: "3.2.0-4"
webui: "[PROTO:ssl]://[HOST]:[PORT:6246]"