hass.tibber_prices/.github/dependabot.yml
Julian Pawlowski 82a5290fe7 chore(deps): update dependency versions and add update script for Home Assistant
Updated the pytest-homeassistant-custom-component version to match the Home Assistant versioning scheme. Added a script to automate the update process for Home Assistant versions across the development environment.

Impact: Developers can now easily update Home Assistant versions and corresponding dependencies with a single command.
2026-05-30 12:19:04 +00:00

51 lines
1.4 KiB
YAML

# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "devcontainers"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "npm"
directory: "/docs/user"
schedule:
interval: "weekly"
groups:
docusaurus:
patterns:
- "@docusaurus/*"
react:
patterns:
- "react"
- "react-dom"
- package-ecosystem: "npm"
directory: "/docs/developer"
schedule:
interval: "weekly"
groups:
docusaurus:
patterns:
- "@docusaurus/*"
react:
patterns:
- "react"
- "react-dom"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
ignore:
# Dependabot should not update Home Assistant as that should match the homeassistant key in hacs.json
- dependency-name: "homeassistant"
# Each phac version pins exactly one HA version (1:1 mapping), so it must be
# updated manually together with HA_VERSION in scripts/setup/bootstrap
- dependency-name: "pytest-homeassistant-custom-component"
# pytest version is pinned by phac; updating it independently causes conflicts
- dependency-name: "pytest"