Files
WGDashboard/.github/dependabot.yml
Donald Zou 8d35887950 Dependabot: set target branch to development
Configure Dependabot to open updates against the development branch. Added target-branch: "development" for pip (/src), npm (/src/static/app), github-actions (/.github), docker (/docker) and docker-compose (/docker). Also added a new npm updates entry for /src/static/client. Update schedules remain weekly.
2026-04-02 16:25:32 +08:00

43 lines
1.2 KiB
YAML

# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "pip"
directory: "/src"
target-branch: "development"
schedule:
interval: "weekly"
- package-ecosystem: "npm"
directory: "/src/static/app"
target-branch: "development"
schedule:
interval: "weekly"
- package-ecosystem: "npm"
directory: "/src/static/client"
target-branch: "development"
schedule:
interval: "weekly"
- package-ecosystem: "github-actions"
directory: "/.github"
target-branch: "development"
schedule:
interval: "weekly"
- package-ecosystem: "docker"
directory: "/docker"
target-branch: "development"
schedule:
interval: "weekly"
- package-ecosystem: "docker-compose"
directory: "/docker"
target-branch: "development"
schedule:
interval: "weekly"