[PR #534] [MERGED] Lint files + add a PR labeler #798

Closed
opened 2026-02-17 17:21:09 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/docs/pull/534
Author: @lnhsingh
Created: 9/15/2025
Status: Merged
Merged: 9/15/2025
Merged by: @lnhsingh

Base: mainHead: preprocess


📝 Commits (8)

📊 Changes

48 files changed (+244 additions, -256 deletions)

View changed files

📝 .editorconfig (+1 -1)
.github/labeler.yml (+95 -0)
📝 .github/workflows/create-preview-branch.yml (+2 -2)
.github/workflows/labeler.yml (+20 -0)
📝 .github/workflows/publish.yml (+1 -1)
📝 .github/workflows/test-build-docs.yml (+1 -1)
📝 .vscode/extensions.json (+1 -1)
📝 .vscode/settings.json (+14 -104)
📝 Makefile (+13 -12)
📝 README.md (+9 -2)
lint-md.sh (+0 -17)
move_files.py (+0 -35)
📝 pipeline/core/builder.py (+6 -6)
📝 pipeline/core/watcher.py (+5 -7)
📝 pipeline/tools/notebook/notebook_convert_templates/mdoutput/conf.json (+1 -1)
📝 pipeline/tools/notebook/notebook_convert_templates/mdoutput/index.md.j2 (+1 -1)
📝 pyproject.toml (+16 -2)
📝 src/docs.json (+2 -2)
📝 src/hide-version-picker.css (+3 -3)
📝 src/hide-version-picker.js (+11 -11)

...and 28 more files

📄 Description

Overview

  • make lint / make format
  • added a PR labeler

Type of change

Type: Infra

Related issues/PRs

  • GitHub issue:
  • Feature PR:
  • Linear issue:
  • Slack thread:

Checklist

  • I have read the contributing guidelines
  • I have tested my changes locally using docs dev
  • All code examples have been tested and work correctly
  • I have used root relative paths for internal links
  • I have updated navigation in src/docs.json if needed
  • I have gotten approval from the relevant reviewers
  • (Internal team members only / optional) I have created a preview deployment using the Create Preview Branch workflow

Additional notes


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/docs/pull/534 **Author:** [@lnhsingh](https://github.com/lnhsingh) **Created:** 9/15/2025 **Status:** ✅ Merged **Merged:** 9/15/2025 **Merged by:** [@lnhsingh](https://github.com/lnhsingh) **Base:** `main` ← **Head:** `preprocess` --- ### 📝 Commits (8) - [`2df811a`](https://github.com/langchain-ai/docs/commit/2df811a71599caf5268f682bdd50c4dd3c1aa9d7) clean up - [`ad8a988`](https://github.com/langchain-ai/docs/commit/ad8a9883a0ff457d8c58eac802d02b0f2d583c23) add PR labeler - [`1427182`](https://github.com/langchain-ai/docs/commit/1427182d55b3090be2539193ad6294fde8b2ded9) edits - [`d81bd58`](https://github.com/langchain-ai/docs/commit/d81bd58a4ab37b5e2ba4a391fafb6aaa441923c1) clean up - [`2967695`](https://github.com/langchain-ai/docs/commit/2967695e9262f398af03d593b554db12d6ffeb33) Merge branch 'main' into preprocess - [`4585312`](https://github.com/langchain-ai/docs/commit/45853126b2eef53d5b03c756535541be59bccb10) edits based on feedback - [`5d04513`](https://github.com/langchain-ai/docs/commit/5d045130d317b313d874d870c59767704b40e895) edits based on feedback - [`c019d62`](https://github.com/langchain-ai/docs/commit/c019d626b8c47481f596e568799ddc7fa877858d) Merge branch 'main' into preprocess ### 📊 Changes **48 files changed** (+244 additions, -256 deletions) <details> <summary>View changed files</summary> 📝 `.editorconfig` (+1 -1) ➕ `.github/labeler.yml` (+95 -0) 📝 `.github/workflows/create-preview-branch.yml` (+2 -2) ➕ `.github/workflows/labeler.yml` (+20 -0) 📝 `.github/workflows/publish.yml` (+1 -1) 📝 `.github/workflows/test-build-docs.yml` (+1 -1) 📝 `.vscode/extensions.json` (+1 -1) 📝 `.vscode/settings.json` (+14 -104) 📝 `Makefile` (+13 -12) 📝 `README.md` (+9 -2) ➖ `lint-md.sh` (+0 -17) ➖ `move_files.py` (+0 -35) 📝 `pipeline/core/builder.py` (+6 -6) 📝 `pipeline/core/watcher.py` (+5 -7) 📝 `pipeline/tools/notebook/notebook_convert_templates/mdoutput/conf.json` (+1 -1) 📝 `pipeline/tools/notebook/notebook_convert_templates/mdoutput/index.md.j2` (+1 -1) 📝 `pyproject.toml` (+16 -2) 📝 `src/docs.json` (+2 -2) 📝 `src/hide-version-picker.css` (+3 -3) 📝 `src/hide-version-picker.js` (+11 -11) _...and 28 more files_ </details> ### 📄 Description ## Overview - make lint / make format - added a PR labeler ## Type of change **Type:** Infra ## Related issues/PRs <!-- Link to related issues, feature PRs, or discussions (if applicable) --> - GitHub issue: - Feature PR: <!-- For LangChain employees, if applicable: --> - Linear issue: - Slack thread: ## Checklist <!-- Put an 'x' in all boxes that apply --> - [x] I have read the [contributing guidelines](README.md) - [x] I have tested my changes locally using `docs dev` - [x] All code examples have been tested and work correctly - [x] I have used **root relative** paths for internal links - [x] I have updated navigation in `src/docs.json` if needed - [x] I have gotten approval from the relevant reviewers - [ ] (Internal team members only / optional) I have created a preview deployment using the [Create Preview Branch workflow](https://github.com/langchain-ai/docs/actions/workflows/create-preview-branch.yml) ## Additional notes <!-- Any other information that would be helpful for reviewers --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-17 17:21:09 -05:00
yindo closed this issue 2026-02-17 17:21:09 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/docs#798