mirror of
https://github.com/langchain-ai/docs.git
synced 2026-08-27 02:41:59 -04:00
be4b696ddb
This is a **temporary** change while Kathryn is out. Revert it when she is back. ## Why `@katmayb` was on two review paths. This takes her off both so PRs are not waiting on someone who is away, and adds a backup on LangSmith so that area is not left with a single owner. ## What changed **`.github/OWNERS`** | Rule | Before | After | |------|--------|-------| | `*` | `@lnhsingh @katmayb @npentrel @fjmorris` | `@lnhsingh @npentrel @fjmorris` | | `/src/langsmith/` | `@katmayb @fjmorris` | `@fjmorris @lnhsingh` | **`.github/workflows/pr-welcome-comment.yml`** The hardcoded reviewer list for changelog bot PRs drops to `["lnhsingh"]`. ## Worth a careful look - **The workflow line is the part that actually changes behavior.** None of Kathryn's `OWNERS` rules carried an `# auto-request` marker, so those entries only named her in the welcome comment. The hardcoded list in `pr-welcome-comment.yml` was the only place calling `requestReviewers` on her, and it fires on every LangGraph Server and Self-Hosted changelog bot PR. - **`/src/langsmith/fleet/` is untouched** and was already `@lnhsingh @fjmorris`. Since last match wins, Fleet files never routed to Kathryn, so this change only affects LangSmith files outside `fleet/`. - Every affected rule still has at least one owner; nothing falls through to an empty rule. ## Testing - `.github/workflows/pr-welcome-comment.yml` still parses as valid YAML. - No references to `katmayb` remain anywhere in `.github/` or `src/`. Drafted with Claude Code; reviewed by me before opening. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>