mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-07-27 17:26:48 +00:00
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.
51 lines
1.4 KiB
YAML
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"
|