Skip to content

reports/branches: Add branch and pull request audit script with report - #1950

Draft
marcleblanc2 wants to merge 5 commits into
mainfrom
marc/reports/branch-audit
Draft

reports/branches: Add branch and pull request audit script with report#1950
marcleblanc2 wants to merge 5 commits into
mainfrom
marc/reports/branch-audit

Conversation

@marcleblanc2

@marcleblanc2 marcleblanc2 commented Sep 11, 2026

Copy link
Copy Markdown
Contributor

Adds reports/branches/branch-audit.mjs and its output branches-and-prs.tsv: one row per branch on GitHub (plus open PRs from forks) with

  • branch name and URL, first and last commit date, days idle
  • tip author and whether they are still in the sourcegraph GitHub org
  • commits ahead of / behind main
  • the PR it belongs to (number, URL, opened date, author, status)
  • a suggested action: DELETE, DELETE?, WIP, ACTIVE, REVIEW, STALE

Run with npm run branch-audit (needs the gh CLI, logged in as an org member). Everything comes from the GitHub GraphQL API; no local clone state is used.

Snapshot on 2026-09-11, after deleting the 113 sync/<date>/<time> bot branches, 22 branches whose PR was already merged, and 149 more stale branches (closed-unmerged PRs, no-PR idle >180d, no commits beyond main), and moving marcleblanc2's 27 unreviewed PRs onto marc/-prefixed branches: 51 branches besides main, 48 open PRs.

Assessment Count
WIP: draft PR 26
DELETE: PR closed without merge 8
ACTIVE: open PR 6
STALE: open PR idle >90d 5
REVIEW: open PR idle 30-90d 3
DELETE?: no PR, idle >180d 2
REVIEW: no PR, idle 30-180d 1
WIP?: recent commits, no PR yet 1

delete_branch_on_merge is already on; the leftovers are branches whose PR was closed unmerged, merged before the setting was enabled, or never had a PR. The upstream docs sync bot now reuses sync/generated-docs, so the sync/<date>/<time> pile will not come back.

Review of open branches: branches-and-prs-review.tsv

Same rows plus two hand-filled columns: change_summary (what merging the branch would do to main) and still_valid (the claim checked against current sourcegraph/sourcegraph and docs main with Deep Search; links in the cell). Author still-in-org was ignored for this column.

still_valid Count
N/A (tooling / tests / link fixes / no diff) 77
OUTDATED (product changed, superseded, or regenerated) 68
ALREADY DOCUMENTED on main 34
PARTIALLY VALID 8
NOT FOUND (no evidence in code) 7
VALID (real gap, worth salvaging) 6
MOSTLY ALREADY DOCUMENTED / MOSTLY ACCURATE / PARTIALLY OUTDATED 3

VALID: docs-explicit-permissions-external-api (#1785), eg-chat-vision (#1474), sg-next-6-9 (Deep Search RBAC permissions), migrate-telemetry (telemetry V2 dev reference), marc/remove-stale-version-notes (#1936), sync/generated-docs (#1883).


Replaces #1923 (branch renamed to marc/reports/branch-audit).

Lists every branch on GitHub with its age, tip author, whether that
author is still in the sourcegraph org, ahead/behind main, the pull
request it belongs to and a suggested action. Run with
`npm run branch-audit`; needs the gh CLI logged in as an org member.
@vercel

vercel Bot commented Sep 11, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated
sourcegraph-docs Ready Ready Preview Sep 12, 2026 3:52am UTC

Request Review

@github-actions

github-actions Bot commented Sep 11, 2026

Copy link
Copy Markdown
Contributor

⚠️ Spell check found 211 issue(s) in this PR

Only findings on lines added by this PR are shown.
Up to 25 of them are also commented inline.

reports/branches/branches-and-prs-review.tsv

reports/branches/branches-and-prs.tsv

Please correct the spelling, or add words which are correct to cspell-allow-list.txt.

Run npx cspell@10 --no-progress --dot '**/*' locally to check the full repository.

Copy of branches-and-prs.tsv with two extra columns: change_summary
(what the branch would change on main) and still_valid (verdict from
checking the claim against current sourcegraph/sourcegraph and docs
main via Deep Search, with links).

Amp-Thread-ID: https://ampcode.com/threads/T-01a09142-8181-76ce-8da4-3562acb0c85c
Co-authored-by: Amp <amp@ampcode.com>
@@ -0,0 +1,204 @@
branch branch_url first_commit last_commit days_idle tip_author author_in_sourcegraph_org ahead_of_main behind_main pr_number pr_url pr_opened pr_author pr_author_in_sourcegraph_org pr_status assessment change_summary still_valid
SEC-3728-admin-passkey-docs https://github.com/sourcegraph/docs/tree/SEC-3728-admin-passkey-docs 2026-02-18 2026-02-18 205 cbrnrd yes 1 209 1615 https://github.com/sourcegraph/docs/pull/1615 2026-02-18 cbrnrd yes closed unmerged 2026-03-04 DELETE: PR closed without merge Adds an Enterprise admin-authentication page documenting FIDO2/WebAuthn passkey step-up checks for admin pages, hourly re-verification, token-authenticated request bypass, passkey management, and HTTPS requirements. It introduces the `auth.adminPasskeyRequired` and `auth.adminPasskeyPINRequired` site settings, both defaulting to false. OUTDATED: passkey admin feature was reverted on sourcegraph main; nothing to document (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

cbrnrd is not in the dictionary.

Did you mean corned?

Suggested change
SEC-3728-admin-passkey-docs https://github.com/sourcegraph/docs/tree/SEC-3728-admin-passkey-docs 2026-02-18 2026-02-18 205 cbrnrd yes 1 209 1615 https://github.com/sourcegraph/docs/pull/1615 2026-02-18 cbrnrd yes closed unmerged 2026-03-04 DELETE: PR closed without merge Adds an Enterprise admin-authentication page documenting FIDO2/WebAuthn passkey step-up checks for admin pages, hourly re-verification, token-authenticated request bypass, passkey management, and HTTPS requirements. It introduces the `auth.adminPasskeyRequired` and `auth.adminPasskeyPINRequired` site settings, both defaulting to false. OUTDATED: passkey admin feature was reverted on sourcegraph main; nothing to document (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
SEC-3728-admin-passkey-docs https://github.com/sourcegraph/docs/tree/SEC-3728-admin-passkey-docs 2026-02-18 2026-02-18 205 cbrnrd yes 1 209 1615 https://github.com/sourcegraph/docs/pull/1615 2026-02-18 corned yes closed unmerged 2026-03-04 DELETE: PR closed without merge Adds an Enterprise admin-authentication page documenting FIDO2/WebAuthn passkey step-up checks for admin pages, hourly re-verification, token-authenticated request bypass, passkey management, and HTTPS requirements. It introduces the `auth.adminPasskeyRequired` and `auth.adminPasskeyPINRequired` site settings, both defaulting to false. OUTDATED: passkey admin feature was reverted on sourcegraph main; nothing to document (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

@@ -0,0 +1,204 @@
branch branch_url first_commit last_commit days_idle tip_author author_in_sourcegraph_org ahead_of_main behind_main pr_number pr_url pr_opened pr_author pr_author_in_sourcegraph_org pr_status assessment change_summary still_valid
SEC-3728-admin-passkey-docs https://github.com/sourcegraph/docs/tree/SEC-3728-admin-passkey-docs 2026-02-18 2026-02-18 205 cbrnrd yes 1 209 1615 https://github.com/sourcegraph/docs/pull/1615 2026-02-18 cbrnrd yes closed unmerged 2026-03-04 DELETE: PR closed without merge Adds an Enterprise admin-authentication page documenting FIDO2/WebAuthn passkey step-up checks for admin pages, hourly re-verification, token-authenticated request bypass, passkey management, and HTTPS requirements. It introduces the `auth.adminPasskeyRequired` and `auth.adminPasskeyPINRequired` site settings, both defaulting to false. OUTDATED: passkey admin feature was reverted on sourcegraph main; nothing to document (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
Update-AWS-AMI-docs https://github.com/sourcegraph/docs/tree/Update-AWS-AMI-docs 2024-08-06 2024-08-06 765 marcleblanc2 yes 1 1054 548 https://github.com/sourcegraph/docs/pull/548 2024-08-06 marcleblanc2 yes closed unmerged 2025-07-21 DELETE: PR closed without merge Reworks the AWS AMI deployment guide with an instance-size chart, EC2 launch steps, SSH and public-IP security guidance, Application Load Balancer/HTTPS hardening, and scheduled EBS snapshot backups. PARTIALLY VALID: AMI and one-click pages still published; hardening/ALB/snapshot guidance not on main. Kustomize references OUTDATED (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

marcleblanc is not in the dictionary.

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

aa/alerts-page https://github.com/sourcegraph/docs/tree/aa/alerts-page 2024-03-21 2024-03-21 904 MaedahBatool no 1 1355 188 https://github.com/sourcegraph/docs/pull/188 2024-03-21 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org No substantive change: it only adds a large generated admin observability alerts page under `src/app/gen` (diff exceeded 1 MB and was summarized from its stat and a sample). OUTDATED: generated alerts page; regenerate via sync/generated-docs instead
add-customer-docs https://github.com/sourcegraph/docs/tree/add-customer-docs 2024-02-20 2024-02-20 933 MaedahBatool no 2 1479 107 https://github.com/sourcegraph/docs/pull/107 2024-02-20 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Adds a broad Sourcegraph getting-started guide linking users to Cody, Code Search, Code Navigation, Code Monitoring, Batch Changes, Code Insights, Notebooks, CLI, and GraphQL/Stream APIs, and makes a small Cody Chat wording change. OUTDATED: getting-started now lists Deep Search/MCP Server; Notebooks removed in 7.0 (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b)
add-faq https://github.com/sourcegraph/docs/tree/add-faq 2024-09-18 2024-09-18 722 MaedahBatool no 2 961 661 https://github.com/sourcegraph/docs/pull/661 2024-09-18 MaedahBatool no closed unmerged 2024-09-19 DELETE: PR closed without merge; author left org Adds a Cody FAQ answer saying Cody specializes in codebase, programming, testing, and debugging questions, while Cody Chat is also optimized for general-purpose queries. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504)
add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 https://github.com/sourcegraph/docs/tree/add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 2026-07-03 2026-07-03 69 bobheadxi yes 1 81 no PR REVIEW: no PR, idle 30-180d Adds only a root-level `HELLO_WORLD.md` containing “Hello, World!”; no product documentation changes. N/A: tooling/test/formatting/link fixes, no product claims

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bobheadxi is not in the dictionary.

Did you mean bowhead?

Suggested change
add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 https://github.com/sourcegraph/docs/tree/add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 2026-07-03 2026-07-03 69 bobheadxi yes 1 81 no PR REVIEW: no PR, idle 30-180d Adds only a root-level `HELLO_WORLD.md` containing “Hello, World!”; no product documentation changes. N/A: tooling/test/formatting/link fixes, no product claims
add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 https://github.com/sourcegraph/docs/tree/add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 2026-07-03 2026-07-03 69 bowhead yes 1 81 no PR REVIEW: no PR, idle 30-180d Adds only a root-level `HELLO_WORLD.md` containing “Hello, World!”; no product documentation changes. N/A: tooling/test/formatting/link fixes, no product claims

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

add-customer-docs https://github.com/sourcegraph/docs/tree/add-customer-docs 2024-02-20 2024-02-20 933 MaedahBatool no 2 1479 107 https://github.com/sourcegraph/docs/pull/107 2024-02-20 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Adds a broad Sourcegraph getting-started guide linking users to Cody, Code Search, Code Navigation, Code Monitoring, Batch Changes, Code Insights, Notebooks, CLI, and GraphQL/Stream APIs, and makes a small Cody Chat wording change. OUTDATED: getting-started now lists Deep Search/MCP Server; Notebooks removed in 7.0 (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b)
add-faq https://github.com/sourcegraph/docs/tree/add-faq 2024-09-18 2024-09-18 722 MaedahBatool no 2 961 661 https://github.com/sourcegraph/docs/pull/661 2024-09-18 MaedahBatool no closed unmerged 2024-09-19 DELETE: PR closed without merge; author left org Adds a Cody FAQ answer saying Cody specializes in codebase, programming, testing, and debugging questions, while Cody Chat is also optimized for general-purpose queries. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504)
add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 https://github.com/sourcegraph/docs/tree/add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 2026-07-03 2026-07-03 69 bobheadxi yes 1 81 no PR REVIEW: no PR, idle 30-180d Adds only a root-level `HELLO_WORLD.md` containing “Hello, World!”; no product documentation changes. N/A: tooling/test/formatting/link fixes, no product claims
agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 https://github.com/sourcegraph/docs/tree/agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 2026-04-15 2026-04-15 149 sourcegraph-bot bot 1 132 1748 https://github.com/sourcegraph/docs/pull/1748 2026-04-15 jdorfman yes closed unmerged 2026-04-15 DELETE: PR closed without merge Site tooling only: simplifies the Tailwind content configuration paths; no documentation content changes. N/A: tooling/test/formatting/link fixes, no product claims

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

jdorfman is not in the dictionary.

Did you mean joran?

Suggested change
agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 https://github.com/sourcegraph/docs/tree/agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 2026-04-15 2026-04-15 149 sourcegraph-bot bot 1 132 1748 https://github.com/sourcegraph/docs/pull/1748 2026-04-15 jdorfman yes closed unmerged 2026-04-15 DELETE: PR closed without merge Site tooling only: simplifies the Tailwind content configuration paths; no documentation content changes. N/A: tooling/test/formatting/link fixes, no product claims
agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 https://github.com/sourcegraph/docs/tree/agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 2026-04-15 2026-04-15 149 sourcegraph-bot bot 1 132 1748 https://github.com/sourcegraph/docs/pull/1748 2026-04-15 joran yes closed unmerged 2026-04-15 DELETE: PR closed without merge Site tooling only: simplifies the Tailwind content configuration paths; no documentation content changes. N/A: tooling/test/formatting/link fixes, no product claims

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 https://github.com/sourcegraph/docs/tree/add-hello-world-76428404-87be-42ae-b9aa-845a60473c92 2026-07-03 2026-07-03 69 bobheadxi yes 1 81 no PR REVIEW: no PR, idle 30-180d Adds only a root-level `HELLO_WORLD.md` containing “Hello, World!”; no product documentation changes. N/A: tooling/test/formatting/link fixes, no product claims
agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 https://github.com/sourcegraph/docs/tree/agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 2026-04-15 2026-04-15 149 sourcegraph-bot bot 1 132 1748 https://github.com/sourcegraph/docs/pull/1748 2026-04-15 jdorfman yes closed unmerged 2026-04-15 DELETE: PR closed without merge Site tooling only: simplifies the Tailwind content configuration paths; no documentation content changes. N/A: tooling/test/formatting/link fixes, no product claims
ajb-remove-sourcegraph-dot-com-links https://github.com/sourcegraph/docs/tree/ajb-remove-sourcegraph-dot-com-links 2024-12-12 2025-01-14 605 MaedahBatool no 2 771 847 https://github.com/sourcegraph/docs/pull/847 2024-12-12 alexAtSourcegraph no closed unmerged 2025-07-21 DELETE: PR closed without merge; author left org Updates links across admin, executors, API, Cloud, Perforce, audit/security logging, and observability pages to stop using obsolete Sourcegraph.com documentation URLs; no product claims change. N/A: tooling/test/formatting/link fixes, no product claims
ajb-updating-stream-api https://github.com/sourcegraph/docs/tree/ajb-updating-stream-api 2024-09-04 736 michaellzc yes 0 992 no PR DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

michaellzc is not in the dictionary.

Did you mean michaelle?

Suggested change
ajb-updating-stream-api https://github.com/sourcegraph/docs/tree/ajb-updating-stream-api 2024-09-04 736 michaellzc yes 0 992 no PR DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main
ajb-updating-stream-api https://github.com/sourcegraph/docs/tree/ajb-updating-stream-api 2024-09-04 736 michaelle yes 0 992 no PR DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

docs/agentic-batch-changes-ga https://github.com/sourcegraph/docs/tree/docs/agentic-batch-changes-ga 2026-09-11 2026-09-11 0 danielmarquespt yes 4 4 no PR WIP?: recent commits, no PR yet Rewrites Agentic Batch Changes documentation and adds configuration and prompt-writing pages. It documents repository-backed guidance/skills, coding-agent steps with Sourcegraph MCP and Codex/Claude selection, executor isolation, secret injection/redaction, audit logging, RBAC requirements, and CI/check hooks. OUTDATED: agentic Batch Changes still Beta on main; GA flag flips 2026-09-14, re-check then (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
docs/fix-docs-url https://github.com/sourcegraph/docs/tree/docs/fix-docs-url 2025-05-07 2025-05-07 492 trly yes 1 587 1122 https://github.com/sourcegraph/docs/pull/1122 2025-05-07 trly yes closed unmerged 2025-05-07 DELETE: PR closed without merge Rewrites stale documentation links in Kubernetes deployment, search-jobs CLI references, legacy-version listings, and redirects from `docs.sourcegraph.com` to `sourcegraph.com/docs`; no product behavior changes. N/A: tooling/test/formatting/link fixes, no product claims
docs/scip-docs-refresh https://github.com/sourcegraph/docs/tree/docs/scip-docs-refresh 2026-02-16 2026-02-17 205 trly yes 2 211 no PR DELETE?: no PR, idle >180d Refreshes precise code-navigation/SCIP documentation with per-language indexing guides for C/C++, C#, Go, JVM, Python, Ruby, Rust, and TypeScript/JavaScript, plus CI examples and troubleshooting. It says Sourcegraph.com uploads require `-github-token` ownership proof and shows `src code-intel upload` workflows using Sourcegraph access tokens. ALREADY DOCUMENTED: per-language SCIP how-tos and upload flags on main (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396)
docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 https://github.com/sourcegraph/docs/tree/docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 2026-06-16 2026-06-16 86 bobheadxi yes 1 99 1785 https://github.com/sourcegraph/docs/pull/1785 2026-06-16 bobheadxi yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR Rewrites explicit repository-permissions docs around the Sourcegraph external API introduced in 7.0. It documents licensed Get/List/Create/Delete operations under `/api/explicitrepopermissions.v1.Service/...`, `/api-reference` OpenAPI discovery, bearer-token-only authentication, scoped tokens and RBAC, pagination, and user/repository resource names. VALID: explicitrepopermissions.v1.Service exists and docs main has no page for it. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bobheadxi is not in the dictionary.

Did you mean bowhead?

Suggested change
docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 https://github.com/sourcegraph/docs/tree/docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 2026-06-16 2026-06-16 86 bobheadxi yes 1 99 1785 https://github.com/sourcegraph/docs/pull/1785 2026-06-16 bobheadxi yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR Rewrites explicit repository-permissions docs around the Sourcegraph external API introduced in 7.0. It documents licensed Get/List/Create/Delete operations under `/api/explicitrepopermissions.v1.Service/...`, `/api-reference` OpenAPI discovery, bearer-token-only authentication, scoped tokens and RBAC, pagination, and user/repository resource names. VALID: explicitrepopermissions.v1.Service exists and docs main has no page for it. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 https://github.com/sourcegraph/docs/tree/docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 2026-06-16 2026-06-16 86 bobheadxi yes 1 99 1785 https://github.com/sourcegraph/docs/pull/1785 2026-06-16 bowhead yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR Rewrites explicit repository-permissions docs around the Sourcegraph external API introduced in 7.0. It documents licensed Get/List/Create/Delete operations under `/api/explicitrepopermissions.v1.Service/...`, `/api-reference` OpenAPI discovery, bearer-token-only authentication, scoped tokens and RBAC, pagination, and user/repository resource names. VALID: explicitrepopermissions.v1.Service exists and docs main has no page for it. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

docs/agentic-batch-changes-ga https://github.com/sourcegraph/docs/tree/docs/agentic-batch-changes-ga 2026-09-11 2026-09-11 0 danielmarquespt yes 4 4 no PR WIP?: recent commits, no PR yet Rewrites Agentic Batch Changes documentation and adds configuration and prompt-writing pages. It documents repository-backed guidance/skills, coding-agent steps with Sourcegraph MCP and Codex/Claude selection, executor isolation, secret injection/redaction, audit logging, RBAC requirements, and CI/check hooks. OUTDATED: agentic Batch Changes still Beta on main; GA flag flips 2026-09-14, re-check then (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
docs/fix-docs-url https://github.com/sourcegraph/docs/tree/docs/fix-docs-url 2025-05-07 2025-05-07 492 trly yes 1 587 1122 https://github.com/sourcegraph/docs/pull/1122 2025-05-07 trly yes closed unmerged 2025-05-07 DELETE: PR closed without merge Rewrites stale documentation links in Kubernetes deployment, search-jobs CLI references, legacy-version listings, and redirects from `docs.sourcegraph.com` to `sourcegraph.com/docs`; no product behavior changes. N/A: tooling/test/formatting/link fixes, no product claims
docs/scip-docs-refresh https://github.com/sourcegraph/docs/tree/docs/scip-docs-refresh 2026-02-16 2026-02-17 205 trly yes 2 211 no PR DELETE?: no PR, idle >180d Refreshes precise code-navigation/SCIP documentation with per-language indexing guides for C/C++, C#, Go, JVM, Python, Ruby, Rust, and TypeScript/JavaScript, plus CI examples and troubleshooting. It says Sourcegraph.com uploads require `-github-token` ownership proof and shows `src code-intel upload` workflows using Sourcegraph access tokens. ALREADY DOCUMENTED: per-language SCIP how-tos and upload flags on main (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396)
docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 https://github.com/sourcegraph/docs/tree/docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 2026-06-16 2026-06-16 86 bobheadxi yes 1 99 1785 https://github.com/sourcegraph/docs/pull/1785 2026-06-16 bobheadxi yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR Rewrites explicit repository-permissions docs around the Sourcegraph external API introduced in 7.0. It documents licensed Get/List/Create/Delete operations under `/api/explicitrepopermissions.v1.Service/...`, `/api-reference` OpenAPI discovery, bearer-token-only authentication, scoped tokens and RBAC, pagination, and user/repository resource names. VALID: explicitrepopermissions.v1.Service exists and docs main has no page for it. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

explicitrepopermissions is not in the dictionary.

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

docs/scip-docs-refresh https://github.com/sourcegraph/docs/tree/docs/scip-docs-refresh 2026-02-16 2026-02-17 205 trly yes 2 211 no PR DELETE?: no PR, idle >180d Refreshes precise code-navigation/SCIP documentation with per-language indexing guides for C/C++, C#, Go, JVM, Python, Ruby, Rust, and TypeScript/JavaScript, plus CI examples and troubleshooting. It says Sourcegraph.com uploads require `-github-token` ownership proof and shows `src code-intel upload` workflows using Sourcegraph access tokens. ALREADY DOCUMENTED: per-language SCIP how-tos and upload flags on main (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396)
docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 https://github.com/sourcegraph/docs/tree/docs-explicit-permissions-external-api-cf8568f9-dbb8-4609-a80c-8ad8e2ea5106 2026-06-16 2026-06-16 86 bobheadxi yes 1 99 1785 https://github.com/sourcegraph/docs/pull/1785 2026-06-16 bobheadxi yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR Rewrites explicit repository-permissions docs around the Sourcegraph external API introduced in 7.0. It documents licensed Get/List/Create/Delete operations under `/api/explicitrepopermissions.v1.Service/...`, `/api-reference` OpenAPI discovery, bearer-token-only authentication, scoped tokens and RBAC, pagination, and user/repository resource names. VALID: explicitrepopermissions.v1.Service exists and docs main has no page for it. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
docs-legacy-versions https://github.com/sourcegraph/docs/tree/docs-legacy-versions 2024-05-30 2024-05-30 834 MaedahBatool no 1 1181 no PR DELETE?: no PR, idle >180d; author left org No substantive product change: adds a README note pointing to the `sourcegraph/docs-legacy-versions` archive repository plus stray placeholder text. N/A: tooling/test/formatting/link fixes, no product claims
docs-url-rewrite-88cfd6e5-d8f4-47ad-a67e-f9286a430b5a https://github.com/sourcegraph/docs/tree/docs-url-rewrite-88cfd6e5-d8f4-47ad-a67e-f9286a430b5a 2026-09-03 2026-09-03 8 bahrmichael yes 1 36 1851 https://github.com/sourcegraph/docs/pull/1851 2026-09-03 bahrmichael yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR Rewrites stale absolute `docs.sourcegraph.com` links throughout generated CLI reference pages to `sourcegraph.com/docs`; no product behavior changes. N/A: tooling/test/formatting/link fixes, no product claims

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bahrmichael is not in the dictionary.

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

docs-legacy-versions https://github.com/sourcegraph/docs/tree/docs-legacy-versions 2024-05-30 2024-05-30 834 MaedahBatool no 1 1181 no PR DELETE?: no PR, idle >180d; author left org No substantive product change: adds a README note pointing to the `sourcegraph/docs-legacy-versions` archive repository plus stray placeholder text. N/A: tooling/test/formatting/link fixes, no product claims
docs-url-rewrite-88cfd6e5-d8f4-47ad-a67e-f9286a430b5a https://github.com/sourcegraph/docs/tree/docs-url-rewrite-88cfd6e5-d8f4-47ad-a67e-f9286a430b5a 2026-09-03 2026-09-03 8 bahrmichael yes 1 36 1851 https://github.com/sourcegraph/docs/pull/1851 2026-09-03 bahrmichael yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR Rewrites stale absolute `docs.sourcegraph.com` links throughout generated CLI reference pages to `sourcegraph.com/docs`; no product behavior changes. N/A: tooling/test/formatting/link fixes, no product claims
edit-this-page https://github.com/sourcegraph/docs/tree/edit-this-page 2024-03-27 2024-03-28 896 MaedahBatool no 3 1320 212 https://github.com/sourcegraph/docs/pull/212 2024-03-27 MaedahBatool no closed unmerged 2024-05-27 DELETE: PR closed without merge; author left org Performs a massive docs-site migration: moves the old documentation tree to `docs-old`, introduces flattened current/versioned 5.2 pages and navigation, and changes the table-of-contents component. The 13.8 MB diff was summarized from its 1,805-file stat and a sample rather than read in full. OUTDATED: superseded docs-site migration (docs-old tree, versioned 5.2 pages)
eg-auth-token-clarifications https://github.com/sourcegraph/docs/tree/eg-auth-token-clarifications 2026-04-17 2026-04-17 146 enriquegh yes 1 126 1754 https://github.com/sourcegraph/docs/pull/1754 2026-04-17 enriquegh yes open review=APPROVED merge=BEHIND checks=SUCCESS STALE: open PR idle >90d, ping author or close Clarifies authentication choices among service accounts, OAuth Apps, and access tokens, recommending machine identities, per-user OAuth, or simple one-user tokens respectively. It adds MCP OAuth troubleshooting for the `mcp` scope, exact redirect URIs, one-time refresh-token rotation, `MCP#ACCESS`, and notes that `auth.accessTokens` does not disable other authentication methods. ALREADY DOCUMENTED: mcp scope / MCP#ACCESS covered in docs/api/mcp (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enriquegh is not in the dictionary.

Did you mean enrique?

Suggested change
eg-auth-token-clarifications https://github.com/sourcegraph/docs/tree/eg-auth-token-clarifications 2026-04-17 2026-04-17 146 enriquegh yes 1 126 1754 https://github.com/sourcegraph/docs/pull/1754 2026-04-17 enriquegh yes open review=APPROVED merge=BEHIND checks=SUCCESS STALE: open PR idle >90d, ping author or close Clarifies authentication choices among service accounts, OAuth Apps, and access tokens, recommending machine identities, per-user OAuth, or simple one-user tokens respectively. It adds MCP OAuth troubleshooting for the `mcp` scope, exact redirect URIs, one-time refresh-token rotation, `MCP#ACCESS`, and notes that `auth.accessTokens` does not disable other authentication methods. ALREADY DOCUMENTED: mcp scope / MCP#ACCESS covered in docs/api/mcp (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
eg-auth-token-clarifications https://github.com/sourcegraph/docs/tree/eg-auth-token-clarifications 2026-04-17 2026-04-17 146 enriquegh yes 1 126 1754 https://github.com/sourcegraph/docs/pull/1754 2026-04-17 enrique yes open review=APPROVED merge=BEHIND checks=SUCCESS STALE: open PR idle >90d, ping author or close Clarifies authentication choices among service accounts, OAuth Apps, and access tokens, recommending machine identities, per-user OAuth, or simple one-user tokens respectively. It adds MCP OAuth troubleshooting for the `mcp` scope, exact redirect URIs, one-time refresh-token rotation, `MCP#ACCESS`, and notes that `auth.accessTokens` does not disable other authentication methods. ALREADY DOCUMENTED: mcp scope / MCP#ACCESS covered in docs/api/mcp (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

docs-url-rewrite-88cfd6e5-d8f4-47ad-a67e-f9286a430b5a https://github.com/sourcegraph/docs/tree/docs-url-rewrite-88cfd6e5-d8f4-47ad-a67e-f9286a430b5a 2026-09-03 2026-09-03 8 bahrmichael yes 1 36 1851 https://github.com/sourcegraph/docs/pull/1851 2026-09-03 bahrmichael yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR Rewrites stale absolute `docs.sourcegraph.com` links throughout generated CLI reference pages to `sourcegraph.com/docs`; no product behavior changes. N/A: tooling/test/formatting/link fixes, no product claims
edit-this-page https://github.com/sourcegraph/docs/tree/edit-this-page 2024-03-27 2024-03-28 896 MaedahBatool no 3 1320 212 https://github.com/sourcegraph/docs/pull/212 2024-03-27 MaedahBatool no closed unmerged 2024-05-27 DELETE: PR closed without merge; author left org Performs a massive docs-site migration: moves the old documentation tree to `docs-old`, introduces flattened current/versioned 5.2 pages and navigation, and changes the table-of-contents component. The 13.8 MB diff was summarized from its 1,805-file stat and a sample rather than read in full. OUTDATED: superseded docs-site migration (docs-old tree, versioned 5.2 pages)
eg-auth-token-clarifications https://github.com/sourcegraph/docs/tree/eg-auth-token-clarifications 2026-04-17 2026-04-17 146 enriquegh yes 1 126 1754 https://github.com/sourcegraph/docs/pull/1754 2026-04-17 enriquegh yes open review=APPROVED merge=BEHIND checks=SUCCESS STALE: open PR idle >90d, ping author or close Clarifies authentication choices among service accounts, OAuth Apps, and access tokens, recommending machine identities, per-user OAuth, or simple one-user tokens respectively. It adds MCP OAuth troubleshooting for the `mcp` scope, exact redirect URIs, one-time refresh-token rotation, `MCP#ACCESS`, and notes that `auth.accessTokens` does not disable other authentication methods. ALREADY DOCUMENTED: mcp scope / MCP#ACCESS covered in docs/api/mcp (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
eg-chat-vision https://github.com/sourcegraph/docs/tree/eg-chat-vision 2025-12-11 2025-12-11 273 enriquegh yes 1 304 1474 https://github.com/sourcegraph/docs/pull/1474 2025-12-11 enriquegh yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS STALE: open PR idle >90d, ping author or close Updates Cody Chat image-upload documentation to say Enterprise site admins must enable `configFeatures.chatVision` in site configuration. VALID: configFeatures.chatVision exists in the schema and is undocumented on main. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enriquegh is not in the dictionary.

Did you mean enrique?

Suggested change
eg-chat-vision https://github.com/sourcegraph/docs/tree/eg-chat-vision 2025-12-11 2025-12-11 273 enriquegh yes 1 304 1474 https://github.com/sourcegraph/docs/pull/1474 2025-12-11 enriquegh yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS STALE: open PR idle >90d, ping author or close Updates Cody Chat image-upload documentation to say Enterprise site admins must enable `configFeatures.chatVision` in site configuration. VALID: configFeatures.chatVision exists in the schema and is undocumented on main. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)
eg-chat-vision https://github.com/sourcegraph/docs/tree/eg-chat-vision 2025-12-11 2025-12-11 273 enriquegh yes 1 304 1474 https://github.com/sourcegraph/docs/pull/1474 2025-12-11 enrique yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS STALE: open PR idle >90d, ping author or close Updates Cody Chat image-upload documentation to say Enterprise site admins must enable `configFeatures.chatVision` in site configuration. VALID: configFeatures.chatVision exists in the schema and is undocumented on main. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

eg-chat-vision https://github.com/sourcegraph/docs/tree/eg-chat-vision 2025-12-11 2025-12-11 273 enriquegh yes 1 304 1474 https://github.com/sourcegraph/docs/pull/1474 2025-12-11 enriquegh yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS STALE: open PR idle >90d, ping author or close Updates Cody Chat image-upload documentation to say Enterprise site admins must enable `configFeatures.chatVision` in site configuration. VALID: configFeatures.chatVision exists in the schema and is undocumented on main. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)
ent-feature-matrix https://github.com/sourcegraph/docs/tree/ent-feature-matrix 2024-04-30 2024-05-01 862 MaedahBatool no 4 1242 285 https://github.com/sourcegraph/docs/pull/285 2024-04-30 MaedahBatool no closed unmerged 2024-08-16 DELETE: PR closed without merge; author left org Adds an interactive Enterprise feature-parity matrix to the Enterprise docs, with selectors for Chat versus Autocomplete, Cody Gateway versus BYOK, cloud versus on-premises, Sourcegraph version, and LLM provider. It records model availability for Sourcegraph 5.3.0 and 5.3.9104, including OpenAI and Anthropic models through Cody Gateway and Azure OpenAI or AWS Bedrock BYOK support. OUTDATED: Cody Free/Pro sunset 2025-07-23; tier matrix no longer applies (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)
ent-llm-dropdown https://github.com/sourcegraph/docs/tree/ent-llm-dropdown 2024-07-16 2024-07-17 786 MaedahBatool no 3 1073 498 https://github.com/sourcegraph/docs/pull/498 2024-07-16 MaedahBatool no closed unmerged 2024-08-13 DELETE: PR closed without merge; author left org Updates Cody Enterprise and IDE docs to say admins can enable an LLM-selection dropdown and choose the models available to users; user model selection is listed as supported in VS Code and JetBrains, but not Neovim or web. It also says Free, Pro, and Enterprise users can select Chat and Commands models, with Claude 3 Sonnet the JetBrains default for Free users. OUTDATED: Free/Pro tiers gone; model defaults now Claude Sonnet 5 / Haiku 4.5 (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)
es/cs https://github.com/sourcegraph/docs/tree/es/cs 2026-04-26 2026-04-26 138 eseliger yes 2 120 1760 https://github.com/sourcegraph/docs/pull/1760 2026-04-26 eseliger yes open review=APPROVED merge=DIRTY checks=SUCCESS REVIEW: open PR idle 30-90d Cleans up Code Search, Code Navigation, permissions, and code-host documentation, mostly tightening wording and removing stale or duplicated details. Notably, it removes Search Jobs configuration environment variables and disable instructions, says Saved Searches are under More > Saved Searches, changes Search Context selection to use the `context:` predicate, and retains the claim that structural search is disabled by default as of 5.3 and must be enabled with `experimentalFeatures.structuralSearch`. ALREADY DOCUMENTED: structural search default, DISABLE_SEARCH_JOBS, saved searches, context: predicate all on main (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

eseliger is not in the dictionary.

Did you mean eelier?

Suggested change
es/cs https://github.com/sourcegraph/docs/tree/es/cs 2026-04-26 2026-04-26 138 eseliger yes 2 120 1760 https://github.com/sourcegraph/docs/pull/1760 2026-04-26 eseliger yes open review=APPROVED merge=DIRTY checks=SUCCESS REVIEW: open PR idle 30-90d Cleans up Code Search, Code Navigation, permissions, and code-host documentation, mostly tightening wording and removing stale or duplicated details. Notably, it removes Search Jobs configuration environment variables and disable instructions, says Saved Searches are under More > Saved Searches, changes Search Context selection to use the `context:` predicate, and retains the claim that structural search is disabled by default as of 5.3 and must be enabled with `experimentalFeatures.structuralSearch`. ALREADY DOCUMENTED: structural search default, DISABLE_SEARCH_JOBS, saved searches, context: predicate all on main (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396)
es/cs https://github.com/sourcegraph/docs/tree/es/cs 2026-04-26 2026-04-26 138 eseliger yes 2 120 1760 https://github.com/sourcegraph/docs/pull/1760 2026-04-26 eelier yes open review=APPROVED merge=DIRTY checks=SUCCESS REVIEW: open PR idle 30-90d Cleans up Code Search, Code Navigation, permissions, and code-host documentation, mostly tightening wording and removing stale or duplicated details. Notably, it removes Search Jobs configuration environment variables and disable instructions, says Saved Searches are under More > Saved Searches, changes Search Context selection to use the `context:` predicate, and retains the claim that structural search is disabled by default as of 5.3 and must be enabled with `experimentalFeatures.structuralSearch`. ALREADY DOCUMENTED: structural search default, DISABLE_SEARCH_JOBS, saved searches, context: predicate all on main (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

fix-broken-links-algolia https://github.com/sourcegraph/docs/tree/fix-broken-links-algolia 2024-03-21 2024-03-21 904 MaedahBatool no 1 1355 187 https://github.com/sourcegraph/docs/pull/187 2024-03-21 MaedahBatool no closed unmerged 2024-05-21 DELETE: PR closed without merge; author left org Repairs internal links and headings across deployment, admin, Code Search, code-intelligence developer, migration, and telemetry pages, including versioned 5.2 copies. It also makes MDX headings horizontally scrollable; otherwise the changes are link fixes and whitespace cleanup. N/A: tooling/test/formatting/link fixes, no product claims
fix-broken-links-and-anchors https://github.com/sourcegraph/docs/tree/fix-broken-links-and-anchors 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1861 https://github.com/sourcegraph/docs/pull/1861 2026-09-06 marcleblanc2 yes closed unmerged 2026-09-09 DELETE: PR closed without merge Repairs broken links and generated heading anchors across roughly 120 admin, Batch Changes, Code Insights, Code Navigation, Code Search, Cody, integration, and self-hosted deployment pages; no product behavior is changed. N/A: tooling/test/formatting/link fixes, no product claims
fix-trailing-whitespace https://github.com/sourcegraph/docs/tree/fix-trailing-whitespace 2025-07-10 2025-07-10 427 unknown (no GitHub login on commit) 1 483 no PR DELETE?: no PR, idle >180d Fixes the documented Deep Search sharing setting from the invalid `deepSearch.sharing.enabled ` key with trailing whitespace to `deepSearch.sharing.enabled`. ALREADY DOCUMENTED: the typo is not present on main (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)
ga-tag-manager https://github.com/sourcegraph/docs/tree/ga-tag-manager 2024-03-14 2024-03-27 898 MaedahBatool no 2 1336 156 https://github.com/sourcegraph/docs/pull/156 2024-03-14 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Changes site tooling only: injects Google Tag Manager container `GTM-TB4NLS7` into the Next.js root layout, including the head script and noscript iframe. N/A: tooling/test/formatting/link fixes, no product claims

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

noscript is not in the dictionary.

Did you mean script?

Suggested change
ga-tag-manager https://github.com/sourcegraph/docs/tree/ga-tag-manager 2024-03-14 2024-03-27 898 MaedahBatool no 2 1336 156 https://github.com/sourcegraph/docs/pull/156 2024-03-14 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Changes site tooling only: injects Google Tag Manager container `GTM-TB4NLS7` into the Next.js root layout, including the head script and noscript iframe. N/A: tooling/test/formatting/link fixes, no product claims
ga-tag-manager https://github.com/sourcegraph/docs/tree/ga-tag-manager 2024-03-14 2024-03-27 898 MaedahBatool no 2 1336 156 https://github.com/sourcegraph/docs/pull/156 2024-03-14 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Changes site tooling only: injects Google Tag Manager container `GTM-TB4NLS7` into the Next.js root layout, including the head script and script iframe. N/A: tooling/test/formatting/link fixes, no product claims

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

fix-broken-links-and-anchors https://github.com/sourcegraph/docs/tree/fix-broken-links-and-anchors 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1861 https://github.com/sourcegraph/docs/pull/1861 2026-09-06 marcleblanc2 yes closed unmerged 2026-09-09 DELETE: PR closed without merge Repairs broken links and generated heading anchors across roughly 120 admin, Batch Changes, Code Insights, Code Navigation, Code Search, Cody, integration, and self-hosted deployment pages; no product behavior is changed. N/A: tooling/test/formatting/link fixes, no product claims
fix-trailing-whitespace https://github.com/sourcegraph/docs/tree/fix-trailing-whitespace 2025-07-10 2025-07-10 427 unknown (no GitHub login on commit) 1 483 no PR DELETE?: no PR, idle >180d Fixes the documented Deep Search sharing setting from the invalid `deepSearch.sharing.enabled ` key with trailing whitespace to `deepSearch.sharing.enabled`. ALREADY DOCUMENTED: the typo is not present on main (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)
ga-tag-manager https://github.com/sourcegraph/docs/tree/ga-tag-manager 2024-03-14 2024-03-27 898 MaedahBatool no 2 1336 156 https://github.com/sourcegraph/docs/pull/156 2024-03-14 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Changes site tooling only: injects Google Tag Manager container `GTM-TB4NLS7` into the Next.js root layout, including the head script and noscript iframe. N/A: tooling/test/formatting/link fixes, no product claims
gabe/update-db-migrations https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations 2024-04-25 2024-05-24 839 gabtorre yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: restore.mdx and migrate-backup.mdx list codeinsights-db (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gabtorre is not in the dictionary.

Did you mean gabarone?

Suggested change
gabe/update-db-migrations https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations 2024-04-25 2024-05-24 839 gabtorre yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: restore.mdx and migrate-backup.mdx list codeinsights-db (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
gabe/update-db-migrations https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations 2024-04-25 2024-05-24 839 gabarone yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: restore.mdx and migrate-backup.mdx list codeinsights-db (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

fix-trailing-whitespace https://github.com/sourcegraph/docs/tree/fix-trailing-whitespace 2025-07-10 2025-07-10 427 unknown (no GitHub login on commit) 1 483 no PR DELETE?: no PR, idle >180d Fixes the documented Deep Search sharing setting from the invalid `deepSearch.sharing.enabled ` key with trailing whitespace to `deepSearch.sharing.enabled`. ALREADY DOCUMENTED: the typo is not present on main (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)
ga-tag-manager https://github.com/sourcegraph/docs/tree/ga-tag-manager 2024-03-14 2024-03-27 898 MaedahBatool no 2 1336 156 https://github.com/sourcegraph/docs/pull/156 2024-03-14 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Changes site tooling only: injects Google Tag Manager container `GTM-TB4NLS7` into the Next.js root layout, including the head script and noscript iframe. N/A: tooling/test/formatting/link fixes, no product claims
gabe/update-db-migrations https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations 2024-04-25 2024-05-24 839 gabtorre yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: restore.mdx and migrate-backup.mdx list codeinsights-db (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
gabe/update-db-migrations-rebased https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations-rebased 2024-04-25 2024-05-24 839 gabtorre yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: duplicate of gabe/update-db-migrations (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gabtorre is not in the dictionary.

Did you mean gabarone?

Suggested change
gabe/update-db-migrations-rebased https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations-rebased 2024-04-25 2024-05-24 839 gabtorre yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: duplicate of gabe/update-db-migrations (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
gabe/update-db-migrations-rebased https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations-rebased 2024-04-25 2024-05-24 839 gabarone yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: duplicate of gabe/update-db-migrations (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

ga-tag-manager https://github.com/sourcegraph/docs/tree/ga-tag-manager 2024-03-14 2024-03-27 898 MaedahBatool no 2 1336 156 https://github.com/sourcegraph/docs/pull/156 2024-03-14 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Changes site tooling only: injects Google Tag Manager container `GTM-TB4NLS7` into the Next.js root layout, including the head script and noscript iframe. N/A: tooling/test/formatting/link fixes, no product claims
gabe/update-db-migrations https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations 2024-04-25 2024-05-24 839 gabtorre yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: restore.mdx and migrate-backup.mdx list codeinsights-db (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
gabe/update-db-migrations-rebased https://github.com/sourcegraph/docs/tree/gabe/update-db-migrations-rebased 2024-04-25 2024-05-24 839 gabtorre yes 6 1191 no PR DELETE?: no PR, idle >180d Updates Kubernetes database backup documentation to say backups include the `codeinsights` database in addition to the primary Sourcegraph and `codeintel` databases. ALREADY DOCUMENTED: duplicate of gabe/update-db-migrations (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
gabe/update-dc-db-operations https://github.com/sourcegraph/docs/tree/gabe/update-dc-db-operations 2024-05-24 2024-05-24 839 gabtorre yes 3 1190 no PR DELETE?: no PR, idle >180d Extends Docker Compose database operations to access, back up, restore, copy, and remove volumes for `codeinsights-db`, using PostgreSQL user/database `postgres`; it also fixes the `codeintel-db` dump command. ALREADY DOCUMENTED: codeinsights-db backup/restore covered on main (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

gabtorre is not in the dictionary.

Did you mean gabarone?

Suggested change
gabe/update-dc-db-operations https://github.com/sourcegraph/docs/tree/gabe/update-dc-db-operations 2024-05-24 2024-05-24 839 gabtorre yes 3 1190 no PR DELETE?: no PR, idle >180d Extends Docker Compose database operations to access, back up, restore, copy, and remove volumes for `codeinsights-db`, using PostgreSQL user/database `postgres`; it also fixes the `codeintel-db` dump command. ALREADY DOCUMENTED: codeinsights-db backup/restore covered on main (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
gabe/update-dc-db-operations https://github.com/sourcegraph/docs/tree/gabe/update-dc-db-operations 2024-05-24 2024-05-24 839 gabarone yes 3 1190 no PR DELETE?: no PR, idle >180d Extends Docker Compose database operations to access, back up, restore, copy, and remove volumes for `codeinsights-db`, using PostgreSQL user/database `postgres`; it also fixes the `codeintel-db` dump command. ALREADY DOCUMENTED: codeinsights-db backup/restore covered on main (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

jdp/hackathon/versionsuptodate https://github.com/sourcegraph/docs/tree/jdp/hackathon/versionsuptodate 2024-09-24 2024-09-24 716 jdpleiness no 1 962 no PR DELETE?: no PR, idle >180d; author left org Adds an MDX `CurrentVersion` component hard-coded to 5.7.2474 and uses it in Docker Compose installation instructions instead of 5.6.2535, intending to centralize the current release value. OUTDATED: main uses the {CURRENT_VERSION} placeholder, not a hard-coded CurrentVersion component (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
jh/test https://github.com/sourcegraph/docs/tree/jh/test 2024-03-19 2024-03-19 906 jhchabran no 1 1385 170 https://github.com/sourcegraph/docs/pull/170 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-19 DELETE: PR closed without merge; author left org no substantive change (formatting only) N/A: tooling/test/formatting/link fixes, no product claims
jhh/deepsearch-guide-troubleshooting https://github.com/sourcegraph/docs/tree/jhh/deepsearch-guide-troubleshooting 2026-03-12 2026-03-12 183 jasonhawkharris yes 2 167 1683 https://github.com/sourcegraph/docs/pull/1683 2026-03-12 jasonhawkharris yes closed unmerged 2026-03-16 DELETE: PR closed without merge Adds a Deep Search guide covering models, web/sidebar/Slack/API clients, Grafana monitoring, settings, APIs, sources versus citations, and troubleshooting, and links it in navigation. It says Deep Search processing stays inside the instance except configured-LLM calls, models are Sourcegraph-managed through Cody Gateway, BYOK is unsupported, the supported external API is Connect-RPC at `/api/deepsearch.v1.Service/` with `externalapi` token scopes, and Enterprise Starter or Enterprise plans can use it. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)
jlxu/fix-deep-search-dead-links-and-nav https://github.com/sourcegraph/docs/tree/jlxu/fix-deep-search-dead-links-and-nav 2026-03-02 2026-03-02 192 julialeex yes 1 180 1664 https://github.com/sourcegraph/docs/pull/1664 2026-03-02 julialeex yes closed unmerged 2026-03-02 DELETE: PR closed without merge Changes site navigation only by adding the existing Deep Search API page under the Deep Search section. PARTIALLY VALID: docs/deep-search/api.mdx exists but is missing from the sidebar; dead-link fixes already on main (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

julialeex is not in the dictionary.

Did you mean juliane?

Suggested change
jlxu/fix-deep-search-dead-links-and-nav https://github.com/sourcegraph/docs/tree/jlxu/fix-deep-search-dead-links-and-nav 2026-03-02 2026-03-02 192 julialeex yes 1 180 1664 https://github.com/sourcegraph/docs/pull/1664 2026-03-02 julialeex yes closed unmerged 2026-03-02 DELETE: PR closed without merge Changes site navigation only by adding the existing Deep Search API page under the Deep Search section. PARTIALLY VALID: docs/deep-search/api.mdx exists but is missing from the sidebar; dead-link fixes already on main (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)
jlxu/fix-deep-search-dead-links-and-nav https://github.com/sourcegraph/docs/tree/jlxu/fix-deep-search-dead-links-and-nav 2026-03-02 2026-03-02 192 julialeex yes 1 180 1664 https://github.com/sourcegraph/docs/pull/1664 2026-03-02 juliane yes closed unmerged 2026-03-02 DELETE: PR closed without merge Changes site navigation only by adding the existing Deep Search API page under the Deep Search section. PARTIALLY VALID: docs/deep-search/api.mdx exists but is missing from the sidebar; dead-link fixes already on main (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

jh/test https://github.com/sourcegraph/docs/tree/jh/test 2024-03-19 2024-03-19 906 jhchabran no 1 1385 170 https://github.com/sourcegraph/docs/pull/170 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-19 DELETE: PR closed without merge; author left org no substantive change (formatting only) N/A: tooling/test/formatting/link fixes, no product claims
jhh/deepsearch-guide-troubleshooting https://github.com/sourcegraph/docs/tree/jhh/deepsearch-guide-troubleshooting 2026-03-12 2026-03-12 183 jasonhawkharris yes 2 167 1683 https://github.com/sourcegraph/docs/pull/1683 2026-03-12 jasonhawkharris yes closed unmerged 2026-03-16 DELETE: PR closed without merge Adds a Deep Search guide covering models, web/sidebar/Slack/API clients, Grafana monitoring, settings, APIs, sources versus citations, and troubleshooting, and links it in navigation. It says Deep Search processing stays inside the instance except configured-LLM calls, models are Sourcegraph-managed through Cody Gateway, BYOK is unsupported, the supported external API is Connect-RPC at `/api/deepsearch.v1.Service/` with `externalapi` token scopes, and Enterprise Starter or Enterprise plans can use it. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)
jlxu/fix-deep-search-dead-links-and-nav https://github.com/sourcegraph/docs/tree/jlxu/fix-deep-search-dead-links-and-nav 2026-03-02 2026-03-02 192 julialeex yes 1 180 1664 https://github.com/sourcegraph/docs/pull/1664 2026-03-02 julialeex yes closed unmerged 2026-03-02 DELETE: PR closed without merge Changes site navigation only by adding the existing Deep Search API page under the Deep Search section. PARTIALLY VALID: docs/deep-search/api.mdx exists but is missing from the sidebar; dead-link fixes already on main (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea)
julialeex/add-supported-models https://github.com/sourcegraph/docs/tree/julialeex/add-supported-models 2025-11-26 2025-11-26 288 julialeex yes 1 329 no PR DELETE?: no PR, idle >180d Updates Cody’s supported-model table to add GPT-5.1, Claude Opus 5, and Gemini 3 Pro as supported vision-capable models, and changes Claude 3.7 Sonnet’s vision support from yes to no. It also leaves truncated prose placeholders in the Claude reasoning-model section. OUTDATED: supported-models.mdx on main is the source of truth; listed models dropped (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

julialeex is not in the dictionary.

Did you mean juliane?

Suggested change
julialeex/add-supported-models https://github.com/sourcegraph/docs/tree/julialeex/add-supported-models 2025-11-26 2025-11-26 288 julialeex yes 1 329 no PR DELETE?: no PR, idle >180d Updates Cody’s supported-model table to add GPT-5.1, Claude Opus 5, and Gemini 3 Pro as supported vision-capable models, and changes Claude 3.7 Sonnet’s vision support from yes to no. It also leaves truncated prose placeholders in the Claude reasoning-model section. OUTDATED: supported-models.mdx on main is the source of truth; listed models dropped (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)
julialeex/add-supported-models https://github.com/sourcegraph/docs/tree/julialeex/add-supported-models 2025-11-26 2025-11-26 288 juliane yes 1 329 no PR DELETE?: no PR, idle >180d Updates Cody’s supported-model table to add GPT-5.1, Claude Opus 5, and Gemini 3 Pro as supported vision-capable models, and changes Claude 3.7 Sonnet’s vision support from yes to no. It also leaves truncated prose placeholders in the Claude reasoning-model section. OUTDATED: supported-models.mdx on main is the source of truth; listed models dropped (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

k/document-code-monitor-result-truncation https://github.com/sourcegraph/docs/tree/k/document-code-monitor-result-truncation 2026-07-16 2026-07-16 57 keegancsmith yes 1 69 1817 https://github.com/sourcegraph/docs/pull/1817 2026-07-16 keegancsmith yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR Documents Code Monitoring webhook fields `resultCount` and `resultsTruncated`, explaining that `results` is only an ordered prefix when payload storage limits truncate details and that `resultCount` is the complete match count. NOT FOUND: code monitor webhook payload has no resultCount/resultsTruncated fields (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
k/max-concurrency-docs https://github.com/sourcegraph/docs/tree/k/max-concurrency-docs 2026-02-02 2026-02-02 221 keegancsmith yes 1 221 1580 https://github.com/sourcegraph/docs/pull/1580 2026-02-02 keegancsmith yes draft review=APPROVED merge=BEHIND checks=SUCCESS STALE WIP: draft PR idle >90d Documents the Batch Changes batch-spec `maxConcurrency` field for limiting concurrent server-side workspace executions. It says the effective limit is the lower of this field and the instance-wide limit, and that the field does not affect local `src batch preview` or `src batch apply` runs. NOT FOUND: no maxConcurrency in the batch spec schema (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
k/restrict-merge-to-admins-docs https://github.com/sourcegraph/docs/tree/k/restrict-merge-to-admins-docs 2026-02-26 2026-02-26 197 keegancsmith yes 2 189 1581 https://github.com/sourcegraph/docs/pull/1581 2026-02-03 keegancsmith yes open review=APPROVED merge=DIRTY checks=SUCCESS STALE: open PR idle >90d, ping author or close Documents the `batchChanges.restrictMergeToAdmins` site setting: when true, only site admins may use Batch Changes “Merge changesets” or “Enable auto-merge” actions, particularly when the GitHub App has elevated repository access. ALREADY DOCUMENTED in site-config.mdx (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe)
kubernetes-page-fixup https://github.com/sourcegraph/docs/tree/kubernetes-page-fixup 2026-01-27 2026-01-27 227 bobheadxi yes 1 231 1565 https://github.com/sourcegraph/docs/pull/1565 2026-01-27 bobheadxi yes closed unmerged 2026-01-27 DELETE: PR closed without merge Removes unused current-version imports from the self-hosted Kubernetes/Helm page, likely fixing page rendering or compilation; the remaining changes are list formatting only. OUTDATED: current-version imports it removes no longer exist on main (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bobheadxi is not in the dictionary.

Did you mean bowhead?

Suggested change
kubernetes-page-fixup https://github.com/sourcegraph/docs/tree/kubernetes-page-fixup 2026-01-27 2026-01-27 227 bobheadxi yes 1 231 1565 https://github.com/sourcegraph/docs/pull/1565 2026-01-27 bobheadxi yes closed unmerged 2026-01-27 DELETE: PR closed without merge Removes unused current-version imports from the self-hosted Kubernetes/Helm page, likely fixing page rendering or compilation; the remaining changes are list formatting only. OUTDATED: current-version imports it removes no longer exist on main (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
kubernetes-page-fixup https://github.com/sourcegraph/docs/tree/kubernetes-page-fixup 2026-01-27 2026-01-27 227 bobheadxi yes 1 231 1565 https://github.com/sourcegraph/docs/pull/1565 2026-01-27 bowhead yes closed unmerged 2026-01-27 DELETE: PR closed without merge Removes unused current-version imports from the self-hosted Kubernetes/Helm page, likely fixing page rendering or compilation; the remaining changes are list formatting only. OUTDATED: current-version imports it removes no longer exist on main (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

lb-docs https://github.com/sourcegraph/docs/tree/lb-docs 2024-10-16 2024-10-16 694 MaedahBatool no 1 919 717 https://github.com/sourcegraph/docs/pull/717 2024-10-16 MaedahBatool no closed unmerged 2024-11-01 DELETE: PR closed without merge; author left org Adds site tooling for BaseAI/Langbase: a CLI dependency and script, server-side API-key example, logging configuration, and an auto-synced memory that indexes Markdown/MDX under docs; it does not change documentation content. N/A: tooling/test/formatting/link fixes, no product claims
lsj/llm-config-providers https://github.com/sourcegraph/docs/tree/lsj/llm-config-providers 2024-09-20 2024-09-20 721 unknown (no GitHub login on commit) 1 956 no PR DELETE?: no PR, idle >180d Updates Cody model-configuration docs with the accepted provider IDs and their mappings to server-side provider types, including Cody Gateway, OpenAI-compatible, Bedrock, Azure OpenAI, Anthropic, Fireworks, Google/Gemini, and OpenAI; Hugging Face TGI has a provider type but no provider ID. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4)
marc/Clarify-Postgres-upgrade-requirements-for-Helm https://github.com/sourcegraph/docs/tree/marc/Clarify-Postgres-upgrade-requirements-for-Helm 2026-02-20 2026-02-20 202 marcleblanc2 yes 6 201 1629 https://github.com/sourcegraph/docs/pull/1629 2026-02-20 marcleblanc2 yes draft review=APPROVED merge=DIRTY checks=SUCCESS WIP: draft PR Rewrites the upgrade section of docs/self-hosted/deploy/kubernetes/index.mdx: says Sourcegraph v6 raised the minimum Postgres from 12 to 16, that v7 removed the in-pod Postgres upgrade scripts, and gives the required order (upgrade the 3 Postgres pods on a v6 chart or move to external Postgres >=16 before deploying a v7 chart); replaces the old 'Helm does not support MVU from <=5.9.45 to 6.x' warning. MOSTLY ALREADY DOCUMENTED: v7 entrypoint-script removal is in postgres.mdx; the 5.10.3940 Helm threshold is not attested in source (kubernetes changelog cites v5.9.45). Approved but DIRTY, rebase and drop the unattested threshold (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
marc/build/lint-warnings-and-caniuse https://github.com/sourcegraph/docs/tree/marc/build/lint-warnings-and-caniuse 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 4 1943 https://github.com/sourcegraph/docs/pull/1943 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR Site tooling only: fixes Next.js/ESLint build warnings (img alt, hooks deps) in ContentTabs, Logo, LinkCards, ProductCards and the OG image route, bumps caniuse-lite/Browserslist, and notes the build commands in AGENTS.md/README.md. N/A: tooling/test/formatting/link fixes, no product claims

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Browserslist is not in the dictionary.

Did you mean Browserslice?

Suggested change
marc/build/lint-warnings-and-caniuse https://github.com/sourcegraph/docs/tree/marc/build/lint-warnings-and-caniuse 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 4 1943 https://github.com/sourcegraph/docs/pull/1943 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR Site tooling only: fixes Next.js/ESLint build warnings (img alt, hooks deps) in ContentTabs, Logo, LinkCards, ProductCards and the OG image route, bumps caniuse-lite/Browserslist, and notes the build commands in AGENTS.md/README.md. N/A: tooling/test/formatting/link fixes, no product claims
marc/build/lint-warnings-and-caniuse https://github.com/sourcegraph/docs/tree/marc/build/lint-warnings-and-caniuse 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 4 1943 https://github.com/sourcegraph/docs/pull/1943 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR Site tooling only: fixes Next.js/ESLint build warnings (img alt, hooks deps) in ContentTabs, Logo, LinkCards, ProductCards and the OG image route, bumps caniuse-lite/Browserslice, and notes the build commands in AGENTS.md/README.md. N/A: tooling/test/formatting/link fixes, no product claims

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

marc/reports/branch-audit https://github.com/sourcegraph/docs/tree/marc/reports/branch-audit 2026-09-11 2026-09-11 0 marcleblanc2 yes 2 1 1950 https://github.com/sourcegraph/docs/pull/1950 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR Site tooling only: adds reports/branches/branch-audit.mjs (GitHub GraphQL via gh) and the branches-and-prs.tsv report it generates, plus an npm script. N/A: tooling/test/formatting/link fixes, no product claims
marc/rewrite-external-db-page https://github.com/sourcegraph/docs/tree/marc/rewrite-external-db-page 2025-11-22 2025-11-22 293 marcleblanc2 yes 1 340 1924 https://github.com/sourcegraph/docs/pull/1924 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=FAILURE WIP: draft PR Rewrites docs/admin/external_services/postgres.mdx (293 lines to 127): states minimum Postgres 16 as of Sourcegraph 6.0, documents PG*/CODEINTEL_PG*/CODEINSIGHTS_PG* env vars, PGSSLMODE, EC2 role credentials via PG_CONNECTION_UPDATER, SUPERUSER requirement for first-migration extensions (with restricted-permission workaround incl. `CREATE extension intarray`), and PgBouncer's statement_cache_mode=describe; drops the long per-deployment walkthroughs. 293 days old. ALREADY DOCUMENTED: page moved to docs/self-hosted/external-services/postgres.mdx and covers every claim; branch conflicts (DIRTY). Rebase onto the moved page as a trim, or close (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646)
marc/site/redirects-in-next-config https://github.com/sourcegraph/docs/tree/marc/site/redirects-in-next-config 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 8 1942 https://github.com/sourcegraph/docs/pull/1942 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=FAILURE WIP: draft PR Site tooling only: moves the static redirect table from src/middleware.ts into next.config.js redirects(), leaving middleware for dynamic cases, and teaches dev/check-links.mjs the new location. N/A: tooling/test/formatting/link fixes, no product claims
marc/site/static-md-routes-and-fluid https://github.com/sourcegraph/docs/tree/marc/site/static-md-routes-and-fluid 2026-09-11 2026-09-11 0 marcleblanc2 yes 2 8 1945 https://github.com/sourcegraph/docs/pull/1945 2026-09-11 marcleblanc2 yes open merge=DIRTY checks=FAILURE ACTIVE: open PR Site tooling only: prerenders the /api/md/[...slug] markdown route at build time (dynamic = 'force-static') and enables Vercel Fluid compute in vercel.json. N/A: tooling/test/formatting/link fixes, no product claims

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

prerenders is not in the dictionary.

Did you mean prependers?

Suggested change
marc/site/static-md-routes-and-fluid https://github.com/sourcegraph/docs/tree/marc/site/static-md-routes-and-fluid 2026-09-11 2026-09-11 0 marcleblanc2 yes 2 8 1945 https://github.com/sourcegraph/docs/pull/1945 2026-09-11 marcleblanc2 yes open merge=DIRTY checks=FAILURE ACTIVE: open PR Site tooling only: prerenders the /api/md/[...slug] markdown route at build time (dynamic = 'force-static') and enables Vercel Fluid compute in vercel.json. N/A: tooling/test/formatting/link fixes, no product claims
marc/site/static-md-routes-and-fluid https://github.com/sourcegraph/docs/tree/marc/site/static-md-routes-and-fluid 2026-09-11 2026-09-11 0 marcleblanc2 yes 2 8 1945 https://github.com/sourcegraph/docs/pull/1945 2026-09-11 marcleblanc2 yes open merge=DIRTY checks=FAILURE ACTIVE: open PR Site tooling only: prependers the /api/md/[...slug] markdown route at build time (dynamic = 'force-static') and enables Vercel Fluid compute in vercel.json. N/A: tooling/test/formatting/link fixes, no product claims

Please correct the spelling, or add the word to cspell-allow-list.txt if it is correct.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant