mirror of
https://github.com/snapotter-hq/SnapOtter.git
synced 2026-08-03 07:46:42 +02:00
Add .vscode/ with Biome formatter, Tailwind, Vitest, Playwright, and Python debug configs. Extract shared pnpm/Node setup into a composite GitHub Action and add Dependabot and dependency-review workflows.
53 lines
1.1 KiB
YAML
53 lines
1.1 KiB
YAML
version: 2
|
|
|
|
updates:
|
|
# npm/pnpm dependencies (root lockfile covers entire monorepo)
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
open-pull-requests-limit: 10
|
|
groups:
|
|
production-deps:
|
|
dependency-type: "production"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
dev-deps:
|
|
dependency-type: "development"
|
|
update-types:
|
|
- "minor"
|
|
- "patch"
|
|
ignore:
|
|
- dependency-name: "*"
|
|
update-types: ["version-update:semver-major"]
|
|
|
|
# Python dependencies (AI sidecar)
|
|
- package-ecosystem: "pip"
|
|
directory: "/packages/ai/python"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
open-pull-requests-limit: 5
|
|
|
|
# Docker base images
|
|
- package-ecosystem: "docker"
|
|
directory: "/docker"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
open-pull-requests-limit: 3
|
|
|
|
# GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "monday"
|
|
open-pull-requests-limit: 5
|
|
groups:
|
|
actions:
|
|
patterns:
|
|
- "*"
|