Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 6 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ updates:
- package-ecosystem: "docker-compose"
directory: "/homeassistant"
schedule:
interval: "weekly"
day: "sunday"
interval: "daily"
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing Dependabot update frequency from weekly to daily will significantly increase the number of pull requests (potentially 7x more PRs per week). This could create maintenance overhead and noise in the repository. Consider whether daily updates are truly necessary for all services, or if a weekly schedule is sufficient for most while keeping daily updates only for internet-facing services like the proxy.

Copilot uses AI. Check for mistakes.
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot Ja, das ist richtig. Aber auf der anderen Seite enthalten die Versionen immer auch Bug und Security Fixes, die ich gerne Zeitnahe einspielen möchte.

time: "03:00"
timezone: "Europe/Berlin"
commit-message:
Expand All @@ -25,8 +24,7 @@ updates:
- package-ecosystem: "docker-compose"
directory: "/paperless"
schedule:
interval: "weekly"
day: "sunday"
interval: "daily"
time: "03:00"
timezone: "Europe/Berlin"
commit-message:
Expand All @@ -36,8 +34,7 @@ updates:
- package-ecosystem: "docker-compose"
directory: "/immich"
schedule:
interval: "weekly"
day: "sunday"
interval: "daily"
time: "03:00"
timezone: "Europe/Berlin"
commit-message:
Expand All @@ -52,8 +49,7 @@ updates:
- package-ecosystem: "docker-compose"
directory: "/pihole"
schedule:
interval: "weekly"
day: "sunday"
interval: "daily"
time: "03:00"
timezone: "Europe/Berlin"
commit-message:
Expand All @@ -63,8 +59,7 @@ updates:
- package-ecosystem: "docker-compose"
directory: "/freshrss"
schedule:
interval: "weekly"
day: "sunday"
interval: "daily"
time: "03:00"
timezone: "Europe/Berlin"
commit-message:
Expand All @@ -74,8 +69,7 @@ updates:
- package-ecosystem: "docker-compose"
directory: "/teslamate"
schedule:
interval: "weekly"
day: "sunday"
interval: "daily"
time: "03:00"
timezone: "Europe/Berlin"
commit-message:
Expand Down
5 changes: 0 additions & 5 deletions homeassistant/matter-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,6 @@ Ersetze in `docker-compose.yml` den `matter-hub` Service:
restart: unless-stopped
network_mode: host
volumes:
Copy link

Copilot AI Feb 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The volumes: key is duplicated on lines 120 and 121. This will cause a YAML syntax error when used in docker-compose. Remove the first occurrence on line 120.

Suggested change
volumes:

Copilot uses AI. Check for mistakes.
- ./Matterbridge:/root/Matterbridge # Mounts the Matterbridge plugin directory
- ./matterbridge-data:/root/.matterbridge # Mounts the Matterbridge storage directory
- ./mattercert:/root/.mattercert # Mounts the Matterbridge certificate directory
environment:
- TZ=Europe/Berlin
```

### 3.2 Verzeichnisse erstellen
Expand Down