mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-24 05:50:18 +00:00
Co-authored-by: Mohammad Mohtashim <45242107+keenborder786@users.noreply.github.com> Co-authored-by: Caspar Broekhuizen <caspar@langchain.dev> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Christophe Bornet <cbornet@hotmail.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Sadra Barikbin <sadraqazvin1@yahoo.com> Co-authored-by: Vadym Barda <vadim.barda@gmail.com>
85 lines
1.8 KiB
YAML
85 lines
1.8 KiB
YAML
# Label PRs (config)
|
|
# Automatically applies labels based on changed files and branch patterns
|
|
|
|
# Core packages
|
|
core:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "libs/core/**/*"
|
|
|
|
langchain:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "libs/langchain/**/*"
|
|
- "libs/langchain_v1/**/*"
|
|
|
|
v1:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "libs/langchain_v1/**/*"
|
|
|
|
cli:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "libs/cli/**/*"
|
|
|
|
standard-tests:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "libs/standard-tests/**/*"
|
|
|
|
text-splitters:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "libs/text-splitters/**/*"
|
|
|
|
# Partner integrations
|
|
integration:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "libs/partners/**/*"
|
|
|
|
# Infrastructure and DevOps
|
|
infra:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- ".github/**/*"
|
|
- "Makefile"
|
|
- ".pre-commit-config.yaml"
|
|
- "scripts/**/*"
|
|
- "docker/**/*"
|
|
- "Dockerfile*"
|
|
|
|
github_actions:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- ".github/workflows/**/*"
|
|
- ".github/actions/**/*"
|
|
|
|
dependencies:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "**/pyproject.toml"
|
|
- "uv.lock"
|
|
- "**/requirements*.txt"
|
|
- "**/poetry.lock"
|
|
|
|
# Documentation
|
|
documentation:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "**/*.md"
|
|
- "**/*.rst"
|
|
- "**/README*"
|
|
|
|
# Security related changes
|
|
security:
|
|
- changed-files:
|
|
- any-glob-to-any-file:
|
|
- "**/*security*"
|
|
- "**/*auth*"
|
|
- "**/*credential*"
|
|
- "**/*secret*"
|
|
- "**/*token*"
|
|
- ".github/workflows/security*"
|