Skip to content
This repository was archived by the owner on May 21, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 55 additions & 55 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,101 +4,101 @@
version: 2
updates:
# Main npm/pnpm dependencies
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: npm
directory: /
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "UTC"
interval: weekly
day: monday
time: '06:00'
timezone: UTC
open-pull-requests-limit: 10
reviewers:
- "pederzh" # Replace with your GitHub username
- pederzh # Replace with your GitHub username
assignees:
- "pederzh" # Replace with your GitHub username
- pederzh # Replace with your GitHub username
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
prefix: chore
prefix-development: chore
include: scope
labels:
- "dependencies"
- "automated"
- dependencies
- automated
# Group related packages together
groups:
# LangChain ecosystem
langchain-packages:
patterns:
- "@langchain/*"
- "langchain"
- '@langchain/*'
- langchain
update-types:
- "patch"
- "minor"
- patch
- minor
# TypeScript types
typescript-types:
patterns:
- "@types/*"
- '@types/*'
update-types:
- "patch"
- "minor"
- patch
- minor
# ESLint ecosystem
eslint-packages:
patterns:
- "eslint*"
- "@antfu/eslint-config"
- 'eslint*'
- '@antfu/eslint-config'
update-types:
- "patch"
- "minor"
- patch
- minor
# Development tools
dev-tools:
patterns:
- "typescript"
- "vitest"
- "husky"
- "lint-staged"
- typescript
- vitest
- husky
- lint-staged
update-types:
- "patch"
- "minor"
- patch
- minor
# Utility libraries
utilities:
patterns:
- "lodash-es"
- "uuid"
- "winston"
- "dotenv"
- "ws"
- lodash-es
- uuid
- winston
- dotenv
- ws
update-types:
- "patch"
- "minor"
- patch
- minor
# Schema and validation
schema-validation:
patterns:
- "zod*"
- "*json-schema*"
- 'zod*'
- '*json-schema*'
update-types:
- "patch"
- "minor"
- patch
- minor
# Ignore specific packages if needed
ignore:
# Example: ignore major updates for critical packages
- dependency-name: "@modelcontextprotocol/sdk"
update-types: ["version-update:semver-major"]
- dependency-name: '@modelcontextprotocol/sdk'
update-types: ['version-update:semver-major']
# Example: ignore specific versions
# - dependency-name: "some-package"
# versions: ["1.x", "2.x"]

# GitHub Actions workflow dependencies
- package-ecosystem: "github-actions"
directory: "/"
- package-ecosystem: github-actions
directory: /
schedule:
interval: "weekly"
day: "monday"
time: "06:00"
timezone: "UTC"
interval: weekly
day: monday
time: '06:00'
timezone: UTC
reviewers:
- "pederzh" # Replace with your GitHub username
- pederzh # Replace with your GitHub username
commit-message:
prefix: "ci"
include: "scope"
prefix: ci
include: scope
labels:
- "github-actions"
- "ci"
- github-actions
- ci
Loading