-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9408e92
commit 4149e84
Showing
1 changed file
with
110 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
version: 2 | ||
updates: | ||
# Root level package.json (Turborepo) | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
- "turbo" | ||
commit-message: | ||
prefix: "chore(deps)" | ||
prefix-development: "chore(deps-dev)" | ||
groups: | ||
turborepo-deps: | ||
patterns: | ||
- "turbo" | ||
- "@turbo/*" | ||
|
||
# Web App | ||
- package-ecosystem: "npm" | ||
directory: "/web" | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
- "web" | ||
groups: | ||
next-deps: | ||
patterns: | ||
- "next" | ||
- "@next/*" | ||
react-deps: | ||
patterns: | ||
- "react" | ||
- "react-dom" | ||
|
||
# Admin App | ||
- package-ecosystem: "npm" | ||
directory: "/admin" | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
- "admin" | ||
groups: | ||
next-deps: | ||
patterns: | ||
- "next" | ||
- "@next/*" | ||
react-deps: | ||
patterns: | ||
- "react" | ||
- "react-dom" | ||
|
||
# Sites App | ||
- package-ecosystem: "npm" | ||
directory: "/space" | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
- "sites" | ||
groups: | ||
next-deps: | ||
patterns: | ||
- "next" | ||
- "@next/*" | ||
react-deps: | ||
patterns: | ||
- "react" | ||
- "react-dom" | ||
|
||
# Live Server | ||
- package-ecosystem: "npm" | ||
directory: "/live" # Adjust path for your Node.js app | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
- "live" | ||
- "nodejs" | ||
|
||
# Python service | ||
- package-ecosystem: "pip" | ||
directory: "/apiserver" # Adjust path for your Python app | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
- "backend" | ||
- "python" | ||
|
||
# GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "ci-cd" | ||
- "dependencies" | ||
|
||
# Docker dependencies | ||
- package-ecosystem: "docker" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
- "docker" |