cherry-pick 9425277f (resolved)
This commit is contained in:
parent
8af8ea495e
commit
98609b093d
1 changed files with 25 additions and 29 deletions
54
.github/dependabot.yml
vendored
54
.github/dependabot.yml
vendored
|
|
@ -3,8 +3,11 @@
|
||||||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
|
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
# Enable version updates for GitHub Actions
|
# ============================================================
|
||||||
# Workflow files stored in the default location of `.github/workflows`
|
# GitHub Actions
|
||||||
|
# PR Strategy:
|
||||||
|
# - All updates (major/minor/patch): Grouped into a single PR
|
||||||
|
# ============================================================
|
||||||
- package-ecosystem: github-actions
|
- package-ecosystem: github-actions
|
||||||
directory: /
|
directory: /
|
||||||
groups:
|
groups:
|
||||||
|
|
@ -13,22 +16,22 @@ updates:
|
||||||
- "*" # Group all Actions updates into a single larger pull request
|
- "*" # Group all Actions updates into a single larger pull request
|
||||||
schedule:
|
schedule:
|
||||||
interval: weekly
|
interval: weekly
|
||||||
day: monday
|
|
||||||
time: "02:00"
|
|
||||||
timezone: "Asia/Shanghai"
|
|
||||||
labels:
|
labels:
|
||||||
- "dependencies"
|
- "dependencies"
|
||||||
- "github-actions"
|
- "github-actions"
|
||||||
open-pull-requests-limit: 2
|
open-pull-requests-limit: 5
|
||||||
|
|
||||||
# Configuration for pip (Python dependencies)
|
# ============================================================
|
||||||
|
# Python (pip) Dependencies
|
||||||
|
# PR Strategy:
|
||||||
|
# - Major updates: Individual PR per package (except numpy which is ignored)
|
||||||
|
# - Minor updates: Grouped by category (llm-providers, storage, etc.)
|
||||||
|
# - Patch updates: Grouped by category
|
||||||
|
# ============================================================
|
||||||
- package-ecosystem: "pip"
|
- package-ecosystem: "pip"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
day: "wednesday"
|
|
||||||
time: "02:00"
|
|
||||||
timezone: "Asia/Shanghai"
|
|
||||||
cooldown:
|
cooldown:
|
||||||
default-days: 5
|
default-days: 5
|
||||||
semver-major-days: 30
|
semver-major-days: 30
|
||||||
|
|
@ -63,7 +66,7 @@ updates:
|
||||||
# Data processing and ML
|
# Data processing and ML
|
||||||
data-processing:
|
data-processing:
|
||||||
patterns:
|
patterns:
|
||||||
# - "numpy"
|
- "numpy"
|
||||||
- "scipy"
|
- "scipy"
|
||||||
- "pandas"
|
- "pandas"
|
||||||
- "tiktoken"
|
- "tiktoken"
|
||||||
|
|
@ -102,21 +105,25 @@ updates:
|
||||||
- "minor"
|
- "minor"
|
||||||
- "patch"
|
- "patch"
|
||||||
ignore:
|
ignore:
|
||||||
# numpy updates are disabled due to potential breaking changes
|
|
||||||
- dependency-name: "numpy"
|
- dependency-name: "numpy"
|
||||||
|
update-types:
|
||||||
|
- "version-update:semver-major"
|
||||||
labels:
|
labels:
|
||||||
- "dependencies"
|
- "dependencies"
|
||||||
- "python"
|
- "python"
|
||||||
open-pull-requests-limit: 5
|
open-pull-requests-limit: 10
|
||||||
|
|
||||||
# Configuration for bun (Frontend dependencies)
|
# ============================================================
|
||||||
|
# Frontend (bun) Dependencies
|
||||||
|
# PR Strategy:
|
||||||
|
# - Major updates: Individual PR per package
|
||||||
|
# - Minor updates: Grouped by category (react, ui-components, etc.)
|
||||||
|
# - Patch updates: Grouped by category
|
||||||
|
# ============================================================
|
||||||
- package-ecosystem: "bun"
|
- package-ecosystem: "bun"
|
||||||
directory: "/lightrag_webui"
|
directory: "/lightrag_webui"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
day: "friday"
|
|
||||||
time: "02:00"
|
|
||||||
timezone: "Asia/Shanghai"
|
|
||||||
cooldown:
|
cooldown:
|
||||||
default-days: 5
|
default-days: 5
|
||||||
semver-major-days: 30
|
semver-major-days: 30
|
||||||
|
|
@ -162,18 +169,7 @@ updates:
|
||||||
- "typescript"
|
- "typescript"
|
||||||
- "eslint*"
|
- "eslint*"
|
||||||
- "@eslint/*"
|
- "@eslint/*"
|
||||||
- "typescript-eslint"
|
|
||||||
- "prettier"
|
- "prettier"
|
||||||
- "prettier-*"
|
|
||||||
- "@types/bun"
|
|
||||||
update-types:
|
|
||||||
- "minor"
|
|
||||||
- "patch"
|
|
||||||
# Content rendering libraries (math, diagrams, etc.)
|
|
||||||
content-rendering:
|
|
||||||
patterns:
|
|
||||||
- "katex"
|
|
||||||
- "mermaid"
|
|
||||||
update-types:
|
update-types:
|
||||||
- "minor"
|
- "minor"
|
||||||
- "patch"
|
- "patch"
|
||||||
|
|
@ -187,4 +183,4 @@ updates:
|
||||||
labels:
|
labels:
|
||||||
- "dependencies"
|
- "dependencies"
|
||||||
- "frontend"
|
- "frontend"
|
||||||
open-pull-requests-limit: 5
|
open-pull-requests-limit: 10
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue