diff --git a/package.json b/package.json index 44114c96e..3e3b828b1 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "lint": "next lint", "check": "node dev/checks.mjs", "generate-mermaid-logos": "node dev/generate-mermaid-icons.mjs", + "branch-audit": "node reports/branches/branch-audit.mjs", "format": "prettier --config ./prettier.config.js --cache --cache-strategy metadata --write=true '**/{*.{js?(on),ts?(x),md,mdx,s?css},.*.js?(on)}'" }, "browserslist": "defaults, not ie <= 11", diff --git a/reports/branches/branch-audit.mjs b/reports/branches/branch-audit.mjs new file mode 100644 index 000000000..a0be0b8e8 --- /dev/null +++ b/reports/branches/branch-audit.mjs @@ -0,0 +1,416 @@ +#!/usr/bin/env node + +/** + * Branch and pull request audit for sourcegraph/docs. + * + * Lists every branch on GitHub with its age, tip author, whether that author + * is still in the sourcegraph GitHub org, how far it is ahead of and behind + * main, the pull request it belongs to, and a suggested action. Open pull + * requests from forks get a row too. Writes branches-and-prs.tsv next to + * this script. + * + * Needs the `gh` CLI, logged in as a member of the sourcegraph org + * (membership checks return "no" for everyone otherwise). + * + * Usage: npm run branch-audit + */ + +import {execFileSync} from 'child_process'; +import fs from 'fs'; +import path from 'path'; +import {fileURLToPath} from 'url'; + +const OWNER = 'sourcegraph'; +const REPO = 'docs'; +const DEFAULT_BRANCH = 'main'; +const REPOSITORY_URL = `https://github.com/${OWNER}/${REPO}`; + +const PAGE_SIZE = 100; +// Each branch drags its pull requests along, so smaller pages keep GitHub +// from timing out. +const BRANCH_PAGE_SIZE = 40; +const COMPARE_BATCH_SIZE = 50; +const RETRIES = 3; +const DAY_MS = 24 * 60 * 60 * 1000; + +const SCRIPT_DIR = path.dirname(fileURLToPath(import.meta.url)); +const OUTPUT_FILE = path.join(SCRIPT_DIR, 'branches-and-prs.tsv'); + +const COLUMNS = [ + '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' +]; + +const PULL_REQUEST_FIELDS = ` + number url state isDraft createdAt updatedAt mergedAt closedAt + author { login } + headRefName headRepository { nameWithOwner } +`; + +// Review and check state only matter for open pull requests. +const OPEN_PULL_REQUEST_FIELDS = ` + ${PULL_REQUEST_FIELDS} + reviewDecision mergeStateStatus + commits(last: 1) { nodes { commit { statusCheckRollup { state } } } } +`; + +function graphql(query, variables = {}) { + const args = ['api', 'graphql', '-f', `query=${query}`]; + for (const [name, value] of Object.entries(variables)) { + if (value !== null && value !== undefined) { + args.push('-F', `${name}=${value}`); + } + } + let lastError; + for (let attempt = 1; attempt <= RETRIES; attempt++) { + try { + const response = JSON.parse( + execFileSync('gh', args, { + encoding: 'utf8', + stdio: ['ignore', 'pipe', 'pipe'], + maxBuffer: 64 * 1024 * 1024 + }) + ); + if (response.errors) { + throw new Error( + response.errors.map(error => error.message).join('; ') + ); + } + return response.data; + } catch (error) { + lastError = error; + console.error( + `⚠️ GitHub request failed (attempt ${attempt}/${RETRIES})` + ); + } + } + throw lastError; +} + +// Follows a Relay connection until hasNextPage is false. +function paginate(query, selectConnection) { + const nodes = []; + let cursor = null; + do { + const connection = selectConnection(graphql(query, {cursor})); + nodes.push(...connection.nodes); + cursor = connection.pageInfo.hasNextPage + ? connection.pageInfo.endCursor + : null; + } while (cursor); + return nodes; +} + +function fetchOrganizationMembers() { + const members = paginate( + `query($cursor: String) { + organization(login: "${OWNER}") { + membersWithRole(first: ${PAGE_SIZE}, after: $cursor) { + pageInfo { hasNextPage endCursor } + nodes { login } + } + } + }`, + data => data.organization.membersWithRole + ); + return new Set(members.map(member => member.login)); +} + +function fetchBranches() { + return paginate( + `query($cursor: String) { + repository(owner: "${OWNER}", name: "${REPO}") { + refs(refPrefix: "refs/heads/", first: ${BRANCH_PAGE_SIZE}, after: $cursor, + orderBy: {field: ALPHABETICAL, direction: ASC}) { + pageInfo { hasNextPage endCursor } + nodes { + name + target { + ... on Commit { + committedDate + author { user { login } } + } + } + associatedPullRequests(first: 10) { + nodes { ${PULL_REQUEST_FIELDS} } + } + } + } + } + }`, + data => data.repository.refs + ); +} + +// Compared from main, aheadBy is the branch's own commit count and the +// comparison's first commit is the oldest one on the branch. +function fetchComparisons(branchNames) { + const comparisons = new Map(); + for ( + let start = 0; + start < branchNames.length; + start += COMPARE_BATCH_SIZE + ) { + const batch = branchNames.slice(start, start + COMPARE_BATCH_SIZE); + const fields = batch + .map( + (name, index) => + `b${index}: compare(headRef: ${JSON.stringify(name)}) { + aheadBy behindBy + commits(first: 1) { nodes { committedDate } } + }` + ) + .join('\n'); + const data = graphql(`{ + repository(owner: "${OWNER}", name: "${REPO}") { + ref(qualifiedName: "refs/heads/${DEFAULT_BRANCH}") { ${fields} } + } + }`); + batch.forEach((name, index) => { + const comparison = data.repository.ref[`b${index}`]; + comparisons.set(name, { + ahead: comparison.aheadBy, + behind: comparison.behindBy, + firstCommit: comparison.commits.nodes[0]?.committedDate ?? '' + }); + }); + } + return comparisons; +} + +function fetchOpenPullRequests() { + return paginate( + `query($cursor: String) { + repository(owner: "${OWNER}", name: "${REPO}") { + pullRequests(states: OPEN, first: ${PAGE_SIZE}, after: $cursor) { + pageInfo { hasNextPage endCursor } + nodes { ${OPEN_PULL_REQUEST_FIELDS} } + } + } + }`, + data => data.repository.pullRequests + ); +} + +function dateOnly(timestamp) { + return timestamp ? timestamp.slice(0, 10) : ''; +} + +function daysSince(timestamp) { + if (!timestamp) return ''; + return Math.floor((Date.now() - Date.parse(timestamp)) / DAY_MS); +} + +function memberStatus(login, members) { + if (!login) return 'unknown (no GitHub login on commit)'; + if (/bot|buildkite/i.test(login)) return 'bot'; + return members.has(login) ? 'yes' : 'no'; +} + +// A branch can carry several pull requests (reused patch branches); prefer +// the open one, then the newest. +function pickPullRequest(pullRequests) { + const own = pullRequests.filter( + pullRequest => + pullRequest.headRepository?.nameWithOwner === `${OWNER}/${REPO}` + ); + const open = own.filter(pullRequest => pullRequest.state === 'OPEN'); + return (open.length ? open : own).sort((a, b) => + b.createdAt.localeCompare(a.createdAt) + )[0]; +} + +function pullRequestStatus(pullRequest) { + if (!pullRequest) return 'no PR'; + if (pullRequest.state === 'MERGED') { + return `merged ${dateOnly(pullRequest.mergedAt)}`; + } + if (pullRequest.state === 'CLOSED') { + return `closed unmerged ${dateOnly(pullRequest.closedAt)}`; + } + const parts = [pullRequest.isDraft ? 'draft' : 'open']; + if (pullRequest.reviewDecision) { + parts.push(`review=${pullRequest.reviewDecision}`); + } + if (pullRequest.mergeStateStatus) { + parts.push(`merge=${pullRequest.mergeStateStatus}`); + } + const checks = + pullRequest.commits?.nodes[0]?.commit.statusCheckRollup?.state; + if (checks) parts.push(`checks=${checks}`); + return parts.join(' '); +} + +function assess({ahead, pullRequest, lastCommit, authorMember}) { + const idleDays = daysSince(lastCommit) || 0; + let verdict; + if (ahead === 0) { + verdict = 'DELETE: no commits beyond main'; + } else if (pullRequest?.state === 'MERGED') { + verdict = 'DELETE: PR already merged'; + } else if (pullRequest?.state === 'CLOSED') { + verdict = 'DELETE: PR closed without merge'; + } else if (pullRequest) { + const pullRequestIdleDays = daysSince(pullRequest.updatedAt); + if (pullRequest.isDraft) { + verdict = + pullRequestIdleDays < 90 + ? 'WIP: draft PR' + : 'STALE WIP: draft PR idle >90d'; + } else if (pullRequestIdleDays < 30) { + verdict = 'ACTIVE: open PR'; + } else if (pullRequestIdleDays < 90) { + verdict = 'REVIEW: open PR idle 30-90d'; + } else { + verdict = 'STALE: open PR idle >90d, ping author or close'; + } + } else if (idleDays < 30) { + verdict = 'WIP?: recent commits, no PR yet'; + } else if (idleDays < 180) { + verdict = 'REVIEW: no PR, idle 30-180d'; + } else { + verdict = 'DELETE?: no PR, idle >180d'; + } + if (authorMember === 'no') verdict += '; author left org'; + return verdict; +} + +function pullRequestColumns(pullRequest, members) { + return { + pr_number: pullRequest?.number ?? '', + pr_url: pullRequest?.url ?? '', + pr_opened: dateOnly(pullRequest?.createdAt), + pr_author: pullRequest?.author?.login ?? '', + pr_author_in_sourcegraph_org: pullRequest + ? memberStatus(pullRequest.author?.login, members) + : '', + pr_status: pullRequestStatus(pullRequest) + }; +} + +function branchRow(branch, comparison, members, openPullRequests) { + const login = branch.target.author?.user?.login ?? ''; + const lastCommit = branch.target.committedDate; + const picked = pickPullRequest(branch.associatedPullRequests.nodes); + const pullRequest = openPullRequests.get(picked?.number) ?? picked; + const authorMember = memberStatus(login, members); + return { + branch: branch.name, + branch_url: `${REPOSITORY_URL}/tree/${branch.name}`, + first_commit: dateOnly(comparison.firstCommit), + last_commit: dateOnly(lastCommit), + days_idle: daysSince(lastCommit), + tip_author: login, + author_in_sourcegraph_org: authorMember, + ahead_of_main: comparison.ahead, + behind_main: comparison.behind, + ...pullRequestColumns(pullRequest, members), + assessment: assess({ + ahead: comparison.ahead, + pullRequest, + lastCommit, + authorMember + }) + }; +} + +function forkPullRequestRow(pullRequest, members) { + const login = pullRequest.author?.login ?? ''; + const authorMember = memberStatus(login, members); + const fork = pullRequest.headRepository?.nameWithOwner ?? 'deleted fork'; + return { + branch: `${fork}:${pullRequest.headRefName} (fork)`, + branch_url: `https://github.com/${fork}/tree/${pullRequest.headRefName}`, + first_commit: '', + last_commit: dateOnly(pullRequest.updatedAt), + days_idle: daysSince(pullRequest.updatedAt), + tip_author: login, + author_in_sourcegraph_org: authorMember, + ahead_of_main: '', + behind_main: '', + ...pullRequestColumns(pullRequest, members), + assessment: assess({ + ahead: 1, + pullRequest, + lastCommit: pullRequest.updatedAt, + authorMember + }) + }; +} + +function toTsv(rows) { + const lines = [COLUMNS.join('\t')]; + for (const row of rows) { + lines.push(COLUMNS.map(column => String(row[column] ?? '')).join('\t')); + } + return lines.join('\n') + '\n'; +} + +function main() { + const members = fetchOrganizationMembers(); + console.log(`${members.size} members in the ${OWNER} org`); + + const branches = fetchBranches().filter( + branch => branch.name !== DEFAULT_BRANCH + ); + console.log(`${branches.length} branches besides ${DEFAULT_BRANCH}`); + const comparisons = fetchComparisons(branches.map(branch => branch.name)); + + const openPullRequests = new Map( + fetchOpenPullRequests().map(pullRequest => [ + pullRequest.number, + pullRequest + ]) + ); + const rows = branches.map(branch => + branchRow( + branch, + comparisons.get(branch.name), + members, + openPullRequests + ) + ); + const forkPullRequests = [...openPullRequests.values()].filter( + pullRequest => + pullRequest.headRepository?.nameWithOwner !== `${OWNER}/${REPO}` + ); + console.log(`${forkPullRequests.length} open pull requests from forks`); + rows.push( + ...forkPullRequests.map(pullRequest => + forkPullRequestRow(pullRequest, members) + ) + ); + + fs.writeFileSync(OUTPUT_FILE, toTsv(rows)); + console.log(`✅ Wrote ${path.relative(process.cwd(), OUTPUT_FILE)}\n`); + + const counts = new Map(); + for (const row of rows) { + const verdict = row.assessment.split(';')[0]; + counts.set(verdict, (counts.get(verdict) ?? 0) + 1); + } + for (const [verdict, count] of [...counts].sort((a, b) => b[1] - a[1])) { + console.log(`${String(count).padStart(4)} ${verdict}`); + } +} + +try { + main(); +} catch (error) { + console.error(`❌ ${error.message}`); + process.exit(1); +} diff --git a/reports/branches/branches-and-prs-review.tsv b/reports/branches/branches-and-prs-review.tsv new file mode 100644 index 000000000..cb1c12753 --- /dev/null +++ b/reports/branches/branches-and-prs-review.tsv @@ -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) +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 +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 +al/REL-404/update-version https://github.com/sourcegraph/docs/tree/al/REL-404/update-version 2024-09-16 2024-09-25 715 Chickensoupwithrice no 2 965 no PR DELETE?: no PR, idle >180d; author left org Site tooling only: adds a shell script that replaces Sourcegraph version strings and executor fork variables across deployment installation guides. N/A: tooling/test/formatting/link fixes, no product claims +anorrish-arch-doc-updates https://github.com/sourcegraph/docs/tree/anorrish-arch-doc-updates 2025-04-23 2025-05-08 490 MaedahBatool no 7 579 1094 https://github.com/sourcegraph/docs/pull/1094 2025-04-23 anorrish yes closed unmerged 2025-07-21 DELETE: PR closed without merge; author left org Substantially expands the Sourcegraph architecture overview with service quick links and descriptions of frontend, gitserver, repo-updater, search, code intelligence, storage, infrastructure, and Cody components, including their responsibilities and request/data flows. OUTDATED: repo-updater and symbols merged into worker/searcher; admin/architecture.mdx on main is already current (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +ask-ai https://github.com/sourcegraph/docs/tree/ask-ai 2024-06-24 2024-09-10 731 MaedahBatool no 27 980 640 https://github.com/sourcegraph/docs/pull/640 2024-09-10 MaedahBatool no closed unmerged 2025-05-07 DELETE: PR closed without merge; author left org Site tooling only: adds an Ask AI chat page and API route to the docs site, with streaming chat UI, Markdown/code rendering, copy actions, layout integration, and supporting dependencies. N/A: tooling/test/formatting/link fixes, no product claims +aws-ftr-updates https://github.com/sourcegraph/docs/tree/aws-ftr-updates 2026-02-12 2026-02-12 211 unknown (no GitHub login on commit) 5 216 1598 https://github.com/sourcegraph/docs/pull/1598 2026-02-12 erclm no closed unmerged 2026-02-19 DELETE: PR closed without merge Greatly expands AWS deployment documentation for Docker Compose, single-container, EKS/Kustomize, AMI, and one-click installs. It adds least-privilege IAM policies, VPC/subnet/NAT and security guidance, IMDSv2 and EC2 roles, RDS/S3 integration, load balancing/TLS, backup, monitoring, and deployment procedures. PARTIALLY VALID: AMI/one-click/Compose still supported; EKS Kustomize is legacy and has no docs page. Heavy rewrite needed before reuse (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +bahrmichael/2024-08-15-batch-changes-gh-apps-experimental-label https://github.com/sourcegraph/docs/tree/bahrmichael/2024-08-15-batch-changes-gh-apps-experimental-label 2024-06-21 2024-08-15 756 bahrmichael yes 17 1094 571 https://github.com/sourcegraph/docs/pull/571 2024-08-15 bahrmichael yes closed unmerged 2024-08-15 DELETE: PR closed without merge Documents Batch Changes schema version 2, introduced in Sourcegraph 5.5, where repository-matching queries default to keyword search, and labels Batch Changes GitHub App credentials experimental. It adds setup/removal instructions and states changed GitHub App installations or permissions require deleting and recreating the credential, alongside broad older docs cleanup. ALREADY DOCUMENTED: Batch Changes GitHub App label matches main (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe) +bak-rel/changelog/v5.7.0 https://github.com/sourcegraph/docs/tree/bak-rel/changelog/v5.7.0 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 +check-links-report-format https://github.com/sourcegraph/docs/tree/check-links-report-format 2026-09-11 2026-09-11 0 marcleblanc2 yes 6 4 1916 https://github.com/sourcegraph/docs/pull/1916 2026-09-11 marcleblanc2 yes open review=APPROVED merge=BEHIND checks=SUCCESS ACTIVE: open PR Site tooling only: restructures link-check reports into outbound, absolute-self-link, and inbound sections with one fact per line, emits one actionable review suggestion per fix, and adds a script that synchronizes and removes stale review comments. N/A: tooling/test/formatting/link fixes, no product claims +chrsmith/modelconfig-docs https://github.com/sourcegraph/docs/tree/chrsmith/modelconfig-docs 2024-08-01 2024-08-05 766 chrsmith no 5 1060 540 https://github.com/sourcegraph/docs/pull/540 2024-08-01 chrsmith no closed unmerged 2024-08-08 DELETE: PR closed without merge; author left org Moves and expands Cody Enterprise LLM configuration into a dedicated model-configuration guide. It says Sourcegraph 5.5.4+ supports selectable models and documents the `modelConfiguration` site setting, Cody Gateway model filters, allow/deny wildcards, defaults, custom providers, credentials, and disabling Sourcegraph-supplied models with `sourcegraph: null`. ALREADY DOCUMENTED: modelConfiguration covered on main (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +ci/vercel-ignore-non-site-changes https://github.com/sourcegraph/docs/tree/ci/vercel-ignore-non-site-changes 2026-09-11 2026-09-11 0 marcleblanc2 yes 2 8 1901 https://github.com/sourcegraph/docs/pull/1901 2026-09-11 marcleblanc2 yes open review=APPROVED merge=BEHIND checks=SUCCESS ACTIVE: open PR Site tooling only: configures Vercel to skip preview builds when a commit only changes non-site files. N/A: tooling/test/formatting/link fixes, no product claims +code-insights-revamp https://github.com/sourcegraph/docs/tree/code-insights-revamp 2025-05-12 2025-05-20 478 MaedahBatool no 4 566 1130 https://github.com/sourcegraph/docs/pull/1130 2025-05-12 MaedahBatool no closed unmerged 2025-06-24 DELETE: PR closed without merge; author left org No substantive change (README release-branch comment only). N/A: tooling/test/formatting/link fixes, no product claims +cody-api-docs https://github.com/sourcegraph/docs/tree/cody-api-docs 2024-09-15 2024-09-15 725 MaedahBatool no 1 964 655 https://github.com/sourcegraph/docs/pull/655 2024-09-15 MaedahBatool no closed unmerged 2025-07-19 DELETE: PR closed without merge; author left org Adds Cody/LLM HTTP API documentation with cURL, TypeScript, and Python examples, including relevant-source-location operations plus `GET /.api/llm/models` for listing models and model-detail retrieval; it also adds the page to navigation. PARTIALLY VALID: Cody API exists; check against /api-reference before merging (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +cody-docs-tabs https://github.com/sourcegraph/docs/tree/cody-docs-tabs 2024-06-19 2024-06-19 813 MaedahBatool no 1 1121 440 https://github.com/sourcegraph/docs/pull/440 2024-06-19 MaedahBatool no closed unmerged 2025-07-19 DELETE: PR closed without merge; author left org Replaces the Cody client landing-page cards with tabs for VS Code, JetBrains, experimental Neovim, and Web, and consolidates navigation under “Install Cody for Free & Pro.” OUTDATED: Free/Pro tabs no longer apply (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +cody-eclipse https://github.com/sourcegraph/docs/tree/cody-eclipse 2024-11-19 2024-11-19 660 MaedahBatool no 2 844 807 https://github.com/sourcegraph/docs/pull/807 2024-11-19 MaedahBatool no closed unmerged 2024-11-27 DELETE: PR closed without merge; author left org Adds an experimental Cody for Eclipse installation and usage guide, stating compatibility with Eclipse 2024-03 on Windows 11 and chat-only support, available on Free, Pro, and Enterprise. It adds Eclipse to feature tables/navigation and documents connection, chat history, model selection including Ollama, context, prompts, and troubleshooting. OUTDATED: Cody Eclipse page removed on main and redirected (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +cody-updates-may28 https://github.com/sourcegraph/docs/tree/cody-updates-may28 2025-05-28 2025-05-28 470 MaedahBatool no 1 559 1162 https://github.com/sourcegraph/docs/pull/1162 2025-05-28 MaedahBatool no closed unmerged 2025-06-24 DELETE: PR closed without merge; author left org Updates supported-model and Enterprise model-configuration pages to say AWS Bedrock BYOK supports Claude 3.7 Sonnet thinking mode and Claude 4 Sonnet, with expanded-context reasoning for Claude 3.7. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +cw/token-settings-updates https://github.com/sourcegraph/docs/tree/cw/token-settings-updates 2024-01-23 961 unknown (no GitHub login on commit) 0 1585 57 https://github.com/sourcegraph/docs/pull/57 2024-01-23 chwarwick no merged 2024-01-24 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +data-usage-faq-update https://github.com/sourcegraph/docs/tree/data-usage-faq-update 2024-01-22 962 chillatom no 0 1597 49 https://github.com/sourcegraph/docs/pull/49 2024-01-22 chillatom no merged 2024-01-22 DELETE: no commits beyond main; author left org no diff: branch tip is already in main N/A: no diff, branch tip is already in main +dax/update_cloud_docs https://github.com/sourcegraph/docs/tree/dax/update_cloud_docs 2024-01-12 2024-01-12 972 daxmc99 no 2 1620 35 https://github.com/sourcegraph/docs/pull/35 2024-01-12 daxmc99 no closed unmerged 2024-01-12 DELETE: PR closed without merge; author left org Expands Sourcegraph Cloud private-connectivity documentation and adds an alternate public-load-balancer method for Enterprise customers. It says Sourcegraph supplies two static IPs to allowlist, supports DNS proxying from internal resource names, and can reach private code hosts, artifact registries, and Jira through a customer TCP load balancer with valid TLS. ALREADY DOCUMENTED in cloud/private-connectivity-public-lb.mdx; Sourcegraph Connect is the newer path (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +dec-14-ga https://github.com/sourcegraph/docs/tree/dec-14-ga 2023-12-14 1002 MaedahBatool no 0 1665 8 https://github.com/sourcegraph/docs/pull/8 2023-12-14 MaedahBatool no merged 2023-12-14 DELETE: no commits beyond main; author left org no diff: branch tip is already in main N/A: no diff, branch tip is already in main +dec-14 https://github.com/sourcegraph/docs/tree/dec-14 2023-12-13 2023-12-14 1002 MaedahBatool no 3 1670 5 https://github.com/sourcegraph/docs/pull/5 2023-12-13 MaedahBatool no closed unmerged 2023-12-14 DELETE: PR closed without merge; author left org Refreshes many Cody pages covering autocomplete, chat, commands, client installation, pricing, quickstart, FAQ, and troubleshooting, including claims that autocomplete uses Claude Instant and self-hosted customers need 5.0.4+. It also reorganizes site components and contains a very large generated GraphQL page diff; the 3.8 MB diff was summarized from its stat and a sample. OUTDATED: Claude Instant autocomplete and 5.0.4 minimum are long gone; site components superseded (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +deep-search-june25 https://github.com/sourcegraph/docs/tree/deep-search-june25 2025-06-24 2025-06-24 443 MaedahBatool no 3 519 1202 https://github.com/sourcegraph/docs/pull/1202 2025-06-24 MaedahBatool no closed unmerged 2025-07-19 DELETE: PR closed without merge; author left org Updates Deep Search enablement guidance to say it is enabled by default for Sourcegraph Cloud Enterprise and Enterprise Starter, disabled by default for self-hosted instances, and currently supports only Claude Sonnet 4. OUTDATED: Deep Search access is now license-driven with many models; June-2025 snapshot stale (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea) +demo-design-template https://github.com/sourcegraph/docs/tree/demo-design-template 2024-06-11 2024-06-11 822 MaedahBatool no 3 1151 411 https://github.com/sourcegraph/docs/pull/411 2024-06-11 MaedahBatool no closed unmerged 2024-08-16 DELETE: PR closed without merge; author left org Adds an internal docs design-library page demonstrating headings and callout components; no product behavior changes. N/A: tooling/test/formatting/link fixes, no product claims +derekTest https://github.com/sourcegraph/docs/tree/derekTest 2025-05-06 492 MaedahBatool no 0 587 no PR DELETE: no commits beyond main; author left org no diff: branch tip is already in main N/A: no diff, branch tip is already in main +disabled-structural-search https://github.com/sourcegraph/docs/tree/disabled-structural-search 2024-01-17 968 stefanhengl yes 0 1607 39 https://github.com/sourcegraph/docs/pull/39 2024-01-17 stefanhengl yes merged 2024-01-18 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +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) +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) +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) +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 +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) +hackathon-autocomplete https://github.com/sourcegraph/docs/tree/hackathon-autocomplete 2024-11-05 2024-11-05 674 MaedahBatool no 2 880 770 https://github.com/sourcegraph/docs/pull/770 2024-11-05 adocomplete no closed unmerged 2025-01-14 DELETE: PR closed without merge; author left org no substantive change (formatting only) N/A: tooling/test/formatting/link fixes, no product claims +hackathon-chat https://github.com/sourcegraph/docs/tree/hackathon-chat 2024-11-05 2024-11-05 674 MaedahBatool no 2 880 769 https://github.com/sourcegraph/docs/pull/769 2024-11-05 adocomplete no closed unmerged 2025-02-10 DELETE: PR closed without merge; author left org no substantive change (formatting only) N/A: tooling/test/formatting/link fixes, no product claims +hackathon-cody-visual-studio https://github.com/sourcegraph/docs/tree/hackathon-cody-visual-studio 2024-11-05 2024-11-26 653 MaedahBatool no 4 836 765 https://github.com/sourcegraph/docs/pull/765 2024-11-05 adocomplete no closed unmerged 2025-01-14 DELETE: PR closed without merge; author left org no substantive change (formatting only) N/A: tooling/test/formatting/link fixes, no product claims +hackathon-core-concepts https://github.com/sourcegraph/docs/tree/hackathon-core-concepts 2024-11-05 2024-11-05 674 MaedahBatool no 2 879 778 https://github.com/sourcegraph/docs/pull/778 2024-11-05 adocomplete no closed unmerged 2025-02-10 DELETE: PR closed without merge; author left org no substantive change (formatting only) N/A: tooling/test/formatting/link fixes, no product claims +hackathon-debug https://github.com/sourcegraph/docs/tree/hackathon-debug 2024-11-05 2024-11-05 674 MaedahBatool no 2 879 773 https://github.com/sourcegraph/docs/pull/773 2024-11-05 adocomplete no closed unmerged 2025-01-14 DELETE: PR closed without merge; author left org no substantive change (formatting only) N/A: tooling/test/formatting/link fixes, no product claims +hackathon-prompts https://github.com/sourcegraph/docs/tree/hackathon-prompts 2024-11-05 2024-11-12 667 morgangauth no 3 880 771 https://github.com/sourcegraph/docs/pull/771 2024-11-05 adocomplete no closed unmerged 2024-11-26 DELETE: PR closed without merge; author left org Changes Cody Prompts documentation to say Prompts and the Prompt Library are available in Sourcegraph 5.6.0 and later, replacing the statement that they are available in VS Code and the Sourcegraph web UI. ALREADY DOCUMENTED: Prompts/Prompt Library availability on main (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +hawkse/fix-legacy-current-version-manifest https://github.com/sourcegraph/docs/tree/hawkse/fix-legacy-current-version-manifest 2026-08-31 2026-09-01 10 HawkSE yes 3 36 1849 https://github.com/sourcegraph/docs/pull/1849 2026-08-31 HawkSE yes closed unmerged 2026-09-04 DELETE: PR closed without merge Changes version-selector tooling so legacy documentation sites show the current latest version, their selected archived version, and older versions while omitting intervening releases. It documents that legacy selectors load the canonical manifest from `https://sourcegraph.com/docs/api/versions` and fall back to their bundled list. ALREADY DOCUMENTED: src/app/api/versions route exists on main (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +hello-world-readme-f9e3d1 https://github.com/sourcegraph/docs/tree/hello-world-readme-f9e3d1 2026-06-03 2026-06-03 100 vovakulikov yes 1 106 1778 https://github.com/sourcegraph/docs/pull/1778 2026-06-03 vovakulikov yes closed unmerged 2026-06-11 DELETE: PR closed without merge Adds a “Hello, World!” section with the greeting repeated twice to the contributor README; no product documentation changes. N/A: tooling/test/formatting/link fixes, no product claims +imp-search-results https://github.com/sourcegraph/docs/tree/imp-search-results 2025-03-27 2025-04-02 526 MaedahBatool no 3 644 1048 https://github.com/sourcegraph/docs/pull/1048 2025-03-27 MaedahBatool no closed unmerged 2025-04-02 DELETE: PR closed without merge; author left org Adds Code Search documentation saying Enterprise personalized search ranking boosts results from repositories the user recently contributed to, works best for large codebases, and is enabled by default. It says users can disable it with `experimentalFeatures.boostRelevantRepositories: false`; the large lockfile-only diff is ignored. ALREADY DOCUMENTED: boostRelevantRepositories in features.mdx and settings.mdx (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396) +internal-link-checker https://github.com/sourcegraph/docs/tree/internal-link-checker 2026-01-26 2026-01-26 228 eugenio-sanchez-sg yes 1 231 1562 https://github.com/sourcegraph/docs/pull/1562 2026-01-26 eugenio-sanchez-sg yes draft review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS WIP: draft PR Changes site tooling only: adds a daily/manual GitHub Actions job and Node script that scan MD/MDX routes for broken or case-mismatched internal links and report results through a Slack webhook, plus a package script for local execution. N/A: tooling/test/formatting/link fixes, no product claims +jb-release-apr https://github.com/sourcegraph/docs/tree/jb-release-apr 2024-04-02 2024-04-02 891 MaedahBatool no 1 1306 223 https://github.com/sourcegraph/docs/pull/223 2024-04-02 MaedahBatool no closed unmerged 2024-04-05 DELETE: PR closed without merge; author left org Updates Cody model documentation to say Claude 3 Sonnet is the Free-tier default for Chat and Commands, while Pro users can select supported models; Enterprise support for Claude 3 models is marked “coming soon.” It also says JetBrains Chat History can be exported as JSON. OUTDATED: Free/Pro tiers gone; JetBrains release notes superseded (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +jd/hackathon-o1-troubleshooting https://github.com/sourcegraph/docs/tree/jd/hackathon-o1-troubleshooting 2024-11-05 2024-11-12 668 jdorfman yes 11 879 796 https://github.com/sourcegraph/docs/pull/796 2024-11-12 jdorfman yes closed unmerged 2024-11-12 DELETE: PR closed without merge Expands Cody troubleshooting with Cloudflare 403, Pro-account, regular-expression formatting, and OpenAI o1 guidance. It claims o1-mini/o1-preview have 45k input and 4k output token limits, recommends inputs under 200 lines for deadline errors, and says Pro/Enterprise usage is unlimited under Fair Usage while a 429 usually indicates a Free quota or request-rate limit. OUTDATED: o1 model dropped from catalog; troubleshooting content stale (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +jd/remove-es-callout https://github.com/sourcegraph/docs/tree/jd/remove-es-callout 2025-10-03 2025-10-03 343 jdorfman yes 1 397 1372 https://github.com/sourcegraph/docs/pull/1372 2025-10-03 jdorfman yes closed unmerged 2025-10-03 DELETE: PR closed without merge Changes the Deep Search availability callout to say it is available only to Enterprise customers, removing Enterprise Starter; it continues to say BYOK is unsupported. OUTDATED: docs say Deep Search is Starter + Enterprise; callout removal no longer applies (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea) +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) +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) +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) +language-associations-md https://github.com/sourcegraph/docs/tree/language-associations-md 2024-01-08 976 bobheadxi yes 0 1629 27 https://github.com/sourcegraph/docs/pull/27 2024-01-08 bobheadxi yes merged 2024-01-09 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +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 +marc/check-links/upstream-generated-files https://github.com/sourcegraph/docs/tree/marc/check-links/upstream-generated-files 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 8 1944 https://github.com/sourcegraph/docs/pull/1944 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE ACTIVE: open PR Site tooling only: dev/check-links.mjs stops failing the sourcegraph-buildkite generated-docs sync PR over absolute self-links inside generated reference pages it cannot edit. N/A: tooling/test/formatting/link fixes, no product claims +marc/check-redirects https://github.com/sourcegraph/docs/tree/marc/check-redirects 2026-09-11 2026-09-11 0 marcleblanc2 yes 3 4 1935 https://github.com/sourcegraph/docs/pull/1935 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Site tooling only: adds dev/check-redirects.mjs and a check-redirects GitHub workflow that fails PRs which move or delete a page without adding a redirect in src/data/redirects.ts. N/A: tooling/test/formatting/link fixes, no product claims +marc/ci/vercel-build-failure-report https://github.com/sourcegraph/docs/tree/marc/ci/vercel-build-failure-report 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 1 1946 https://github.com/sourcegraph/docs/pull/1946 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR Site tooling only: adds dev/report-vercel-build.mjs and a vercel-build-report workflow that comments the Vercel build log on PRs whose deploy fails. N/A: tooling/test/formatting/link fixes, no product claims +marc/docs/check-example-hostnames https://github.com/sourcegraph/docs/tree/marc/docs/check-example-hostnames 2026-09-08 2026-09-08 3 marcleblanc2 yes 7 30 1933 https://github.com/sourcegraph/docs/pull/1933 2026-09-11 marcleblanc2 yes draft merge=UNSTABLE checks=FAILURE WIP: draft PR Site tooling plus content: adds dev/check-hostnames.mjs and a check-hostnames workflow that rejects placeholder hostnames outside *.example.com, on top of the 40-file hostname normalization from marc/docs/normalize-example-hostnames. N/A: tooling/test/formatting/link fixes, no product claims +marc/docs/normalize-example-hostnames https://github.com/sourcegraph/docs/tree/marc/docs/normalize-example-hostnames 2026-09-08 2026-09-08 3 marcleblanc2 yes 3 30 1932 https://github.com/sourcegraph/docs/pull/1932 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Content only, no product claims: replaces ad-hoc placeholder hostnames (sourcegraph.example.com variants, mycompany.com, etc.) with *.example.com in 40 admin/code-host/auth pages. N/A: tooling/test/formatting/link fixes, no product claims +marc/fix-dead-section-links https://github.com/sourcegraph/docs/tree/marc/fix-dead-section-links 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1925 https://github.com/sourcegraph/docs/pull/1925 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Content only, no product claims: fixes 28 links to headings that no longer exist across 23 admin, batch-changes and code-navigation pages. N/A: tooling/test/formatting/link fixes, no product claims +marc/fix-moved-page-links https://github.com/sourcegraph/docs/tree/marc/fix-moved-page-links 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1926 https://github.com/sourcegraph/docs/pull/1926 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Content only, no product claims: fixes 50 links to pages that moved, across 38 auth/code-host/admin pages. N/A: tooling/test/formatting/link fixes, no product claims +marc/fix-reworded-anchors-admin https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-admin 2026-09-07 2026-09-07 3 marcleblanc2 yes 2 30 1927 https://github.com/sourcegraph/docs/pull/1927 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Content only, no product claims: fixes 20 heading anchors that were reworded in 12 admin pages. N/A: tooling/test/formatting/link fixes, no product claims +marc/fix-reworded-anchors-cody-batch-insights https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-cody-batch-insights 2026-09-07 2026-09-07 3 marcleblanc2 yes 2 30 1930 https://github.com/sourcegraph/docs/pull/1930 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Content only, no product claims: fixes 19 heading anchors in Batch Changes and Code Insights pages. N/A: tooling/test/formatting/link fixes, no product claims +marc/fix-reworded-anchors-misc https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-misc 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1931 https://github.com/sourcegraph/docs/pull/1931 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Content only, no product claims: fixes 13 heading anchors in analytics, cloud, getting-started, integration and technical-changelog pages. N/A: tooling/test/formatting/link fixes, no product claims +marc/fix-reworded-anchors-search-nav https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-search-nav 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1929 https://github.com/sourcegraph/docs/pull/1929 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Content only, no product claims: fixes 27 heading anchors in code-navigation and code-search pages. N/A: tooling/test/formatting/link fixes, no product claims +marc/fix-reworded-anchors-self-hosted https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-self-hosted 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1928 https://github.com/sourcegraph/docs/pull/1928 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Content only, no product claims: fixes 40 heading anchors in self-hosted deploy (docker-compose, kubernetes, kustomize) pages. N/A: tooling/test/formatting/link fixes, no product claims +marc/fragment-redirects https://github.com/sourcegraph/docs/tree/marc/fragment-redirects 2026-09-08 2026-09-08 3 marcleblanc2 yes 1 30 1934 https://github.com/sourcegraph/docs/pull/1934 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Site tooling only: adds a FragmentRedirect client component so redirects in src/data/redirects.ts that target a #heading are applied in the browser (middleware cannot see fragments). N/A: tooling/test/formatting/link fixes, no product claims +marc/page-views-report https://github.com/sourcegraph/docs/tree/marc/page-views-report 2026-09-09 2026-09-11 0 marcleblanc2 yes 16 28 1938 https://github.com/sourcegraph/docs/pull/1938 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=FAILURE WIP: draft PR Site tooling only: adds reports/traffic/page-views-report.mjs (Cloudflare GraphQL traffic export) plus five generated Markdown reports (by count, path, errors, redirects, redirect rules) and a README. N/A: tooling/test/formatting/link fixes, no product claims +marc/redirect-probe https://github.com/sourcegraph/docs/tree/marc/redirect-probe 2026-09-09 2026-09-10 1 marcleblanc2 yes 22 28 1939 https://github.com/sourcegraph/docs/pull/1939 2026-09-11 marcleblanc2 yes draft merge=DIRTY checks=FAILURE WIP: draft PR Site tooling only (stacked on marc/page-views-report, pre-move layout): adds viewership-metrics/probe-redirects.mjs that requests every redirect rule against the live site and records the result, plus its 60k-line probe output. N/A: tooling/test/formatting/link fixes, no product claims +marc/remove-stale-version-notes https://github.com/sourcegraph/docs/tree/marc/remove-stale-version-notes 2026-09-08 2026-09-08 3 marcleblanc2 yes 1 30 1936 https://github.com/sourcegraph/docs/pull/1936 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Removes ~500 lines of version-gated notes ( / "In Sourcegraph 3.x/4.x/5.x ..." / "as of 5.1") for Sourcegraph < 6.0 from 56 admin, code-host, batch-changes and deploy pages, asserting those behaviors are now unconditional in supported releases. VALID: support policy is current major + N-1 (7.x/6.x); sub-6.0 version notes still present on main (auth.mdx, syncing.mdx, incoming.mdx, language.mdx, requirements.mdx). Rebase and finish (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +marc/remove-technical-changelog https://github.com/sourcegraph/docs/tree/marc/remove-technical-changelog 2026-09-09 2026-09-09 2 marcleblanc2 yes 1 28 1937 https://github.com/sourcegraph/docs/pull/1937 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=FAILURE WIP: draft PR Deletes the 10k-line docs/technical-changelog.mdx (duplicate of the per-release changelog) and replaces it with a TechnicalChangelogRedirect component plus redirects that send each release anchor to its release-notes page; adds ReleasesTable. N/A: tooling/test/formatting/link fixes, no product claims +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 +marc/spellcheck-fix-line-and-patch-comments https://github.com/sourcegraph/docs/tree/marc/spellcheck-fix-line-and-patch-comments 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 1 1947 https://github.com/sourcegraph/docs/pull/1947 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR Site tooling only: dev/post-spelling-review.mjs updates existing inline spell-check comments when the flagged line text changes instead of leaving stale comments. N/A: tooling/test/formatting/link fixes, no product claims +marc/test-check-links-breaks-link https://github.com/sourcegraph/docs/tree/marc/test-check-links-breaks-link 2026-09-10 2026-09-10 1 marcleblanc2 yes 23 24 1940 https://github.com/sourcegraph/docs/pull/1940 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=FAILURE WIP: draft PR Test PR (do not merge): combines the check-links tooling changes and deliberately adds absolute self-links and a dead external link to docs/code-search/features.mdx to exercise the CI comment. N/A: tooling/test/formatting/link fixes, no product claims +marc/test-pr-checks-broken-2 https://github.com/sourcegraph/docs/tree/marc/test-pr-checks-broken-2 2026-09-11 2026-09-11 0 marcleblanc2 yes 12 1 1948 https://github.com/sourcegraph/docs/pull/1948 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR Test PR (do not merge): bundles the check-links, check-redirects, vercel-build-report and spell-check tooling branches and deliberately breaks links/redirects/spelling to exercise every PR check. N/A: tooling/test/formatting/link fixes, no product claims +marc/test-pr-checks-remediated-2 https://github.com/sourcegraph/docs/tree/marc/test-pr-checks-remediated-2 2026-09-11 2026-09-11 0 marcleblanc2 yes 14 1 1949 https://github.com/sourcegraph/docs/pull/1949 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR Test PR (do not merge): same bundle as marc/test-pr-checks-broken-2 with the deliberate breakages fixed, to show the checks going green. N/A: tooling/test/formatting/link fixes, no product claims +marc/todo/vercel-audit https://github.com/sourcegraph/docs/tree/marc/todo/vercel-audit 2026-09-11 2026-09-11 0 marcleblanc2 yes 5 8 1941 https://github.com/sourcegraph/docs/pull/1941 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=DIRTY checks=FAILURE ACTIVE: open PR Site tooling/docs only: adds dev/TODO.md listing Vercel audit follow-ups (redirects in next.config, static markdown routes, Fluid compute, build-failure reporting, lint warnings) plus two cspell allow-list words. N/A: tooling/test/formatting/link fixes, no product claims +merge-project-admin-docs https://github.com/sourcegraph/docs/tree/merge-project-admin-docs 2024-09-17 2024-09-19 721 anorrish yes 13 964 no PR DELETE?: no PR, idle >180d Reworks the administration landing page and initial-configuration quickstart around deployment, code-host connection, authentication/permissions, code navigation, monitoring, and inviting users, and adds an administration links directory. It ranks Cloud, Kubernetes Helm, Docker Compose, Kustomize, and machine images as the recommended deployment order and says Kubernetes is the recommended self-hosted method while Docker Compose is the single-node option. PARTIALLY OUTDATED: Cloud > Helm > Compose order already in deploy/index.mdx; Kustomize and machine images no longer in the recommended list (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +migrate-telemetry https://github.com/sourcegraph/docs/tree/migrate-telemetry 2025-06-23 2025-06-23 444 MaedahBatool no 2 532 1198 https://github.com/sourcegraph/docs/pull/1198 2025-06-23 MaedahBatool no closed unmerged 2025-06-24 DELETE: PR closed without merge; author left org Adds a telemetry development reference describing migration from old telemetry APIs to the new SDK/backend recorder framework: events remain on their Sourcegraph instance, are best-effort copied to event_logs, queued, and periodically exported through Telemetry Gateway to the data warehouse. VALID: telemetry V2 recorder / event_logs tee / Telemetry Gateway pipeline exists; docs main has only admin-facing telemetry pages. Worth salvaging (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396) +mohammad/brokenlink_fix https://github.com/sourcegraph/docs/tree/mohammad/brokenlink_fix 2023-12-22 993 unknown (no GitHub login on commit) 0 1648 15 https://github.com/sourcegraph/docs/pull/15 2023-12-22 mohammadualam no merged 2023-12-22 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +mohammadualam-fixbrokenlink2-1 https://github.com/sourcegraph/docs/tree/mohammadualam-fixbrokenlink2-1 2023-12-24 992 unknown (no GitHub login on commit) 0 1645 16 https://github.com/sourcegraph/docs/pull/16 2023-12-24 mohammadualam no merged 2023-12-24 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +morgan-updates0404 https://github.com/sourcegraph/docs/tree/morgan-updates0404 2024-04-05 2024-04-05 889 morgangauth no 1 1289 no PR DELETE?: no PR, idle >180d; author left org Adds a note to the authentication overview that an OpenID Connect issuer can be found in the provider's /.well-known/openid-configuration document. ALREADY DOCUMENTED on main (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe) +morgangauth-typo-1 https://github.com/sourcegraph/docs/tree/morgangauth-typo-1 2025-02-05 2025-02-05 582 morgangauth no 1 718 960 https://github.com/sourcegraph/docs/pull/960 2025-02-05 morgangauth no closed unmerged 2025-02-05 DELETE: PR closed without merge; author left org No substantive change (typo and grammar fixes only in the Postgres 12-to-16 drift guide). N/A: typo/grammar fixes only in the PG12-16 drift guide +new-models https://github.com/sourcegraph/docs/tree/new-models 2025-04-30 2025-04-30 498 MaedahBatool no 1 598 1113 https://github.com/sourcegraph/docs/pull/1113 2025-04-30 MaedahBatool no closed unmerged 2025-05-01 DELETE: PR closed without merge; author left org Updates Cody's supported-model table to add OpenAI o3, o4-mini, GPT-4.1, GPT-4.1-mini, and GPT-4.1-nano, and Google Gemini 2.5 Pro Preview and 2.5 Flash Preview; it replaces Gemini 2.0 Flash-Lite Preview with Gemini 2.0 Flash and marks model availability for autocomplete, chat, and commands. OUTDATED: Claude 3.7, o3, o4-mini, GPT-4.1, Gemini 2.5 Pro no longer in the model catalog (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +noah-berman-add-warning-allowsignup https://github.com/sourcegraph/docs/tree/noah-berman-add-warning-allowsignup 2024-10-22 2024-10-22 689 noah-berman no 1 912 728 https://github.com/sourcegraph/docs/pull/728 2024-10-22 noah-berman no closed unmerged 2024-10-22 DELETE: PR closed without merge; author left org Adds a warning to built-in authentication docs that allowSignup bypasses duplicate-email validation and should only be enabled when users are not provisioned by another mechanism. NOT FOUND: allowSignup does not bypass duplicate-email checks in current code (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe) +noah-berman-docker-compose-release-version-quick-fix https://github.com/sourcegraph/docs/tree/noah-berman-docker-compose-release-version-quick-fix 2024-09-05 2024-09-05 735 noah-berman no 1 989 627 https://github.com/sourcegraph/docs/pull/627 2024-09-05 noah-berman no closed unmerged 2025-07-21 DELETE: PR closed without merge; author left org Changes Docker Compose installation instructions to stop recommending hard-coded v5.3.9104, instead directing users to the changelog for the latest version and showing an empty SOURCEGRAPH_VERSION in vX.X.XX format. OUTDATED: main uses the {CURRENT_VERSION} placeholder; no hard-coded 5.3.9104 remains (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +noahberman-add-versions-5.4-5.5-redirect https://github.com/sourcegraph/docs/tree/noahberman-add-versions-5.4-5.5-redirect 2024-08-14 2024-08-14 758 noah-berman no 1 1038 no PR DELETE?: no PR, idle >180d; author left org Changes Next.js site routing to send /docs/v/5.4 and /docs/v/5.5 through /docs/@VERSION and then to the corresponding versioned Sourcegraph documentation domains; this is site tooling only. OUTDATED: src/middleware.ts handles /v/X.Y generically (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +noahberman-fix-docs-redirect-older-versions https://github.com/sourcegraph/docs/tree/noahberman-fix-docs-redirect-older-versions 2024-08-14 2024-08-14 758 noah-berman no 2 1042 567 https://github.com/sourcegraph/docs/pull/567 2024-08-14 noah-berman no closed unmerged 2024-08-15 DELETE: PR closed without merge; author left org Replaces hard-coded Next.js redirects for documentation versions 5.2 and 5.3 with generic version routes that redirect /docs/v/VERSION and /docs/@VERSION to VERSION.sourcegraph.com; this is site tooling only. OUTDATED: src/middleware.ts already has the generic version redirect (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +olafurpg/api-component https://github.com/sourcegraph/docs/tree/olafurpg/api-component 2024-10-27 2024-10-27 683 olafurpg no 3 905 no PR DELETE?: no PR, idle >180d; author left org Adds a Cody API documentation page and an MDX OpenAPI renderer for POST /.api/cody/context, POST /.api/llm/chat/completions, GET /.api/llm/models, and GET /.api/llm/models/{modelId}. It also adds scripts to compile/watch Sourcegraph's TypeSpec API definition and refresh the rendered specification. PARTIALLY VALID: TypeSpec in internal/openapi exists and docs point to /api-reference; branch's custom renderer likely superseded (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +olafurpg/openapi-react-component https://github.com/sourcegraph/docs/tree/olafurpg/openapi-react-component 2024-10-28 2024-10-28 682 olafurpg no 1 905 738 https://github.com/sourcegraph/docs/pull/738 2024-10-28 olafurpg no closed unmerged 2024-10-28 DELETE: PR closed without merge; author left org Adds a Cody API documentation page and an MDX OpenAPI renderer for POST /.api/cody/context, POST /.api/llm/chat/completions, GET /.api/llm/models, and GET /.api/llm/models/{modelId}. It also adds scripts to compile/watch Sourcegraph's TypeSpec API definition and refresh the rendered specification. PARTIALLY VALID: same as olafurpg/api-component; custom OpenAPI React renderer likely superseded (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +olafurpg-cody-3224-document-new-public-api-on-sourcegraphcomdocs https://github.com/sourcegraph/docs/tree/olafurpg-cody-3224-document-new-public-api-on-sourcegraphcomdocs 2024-10-02 2024-10-09 702 olafurpg no 6 939 700 https://github.com/sourcegraph/docs/pull/700 2024-10-09 olafurpg no closed unmerged 2024-10-11 DELETE: PR closed without merge; author left org Adds a themed, standalone OpenAPI REST API explorer for the work-in-progress Cody API, covering context retrieval, LLM chat completions, model listing, and model lookup endpoints. It also adds tooling to compile/watch the Sourcegraph TypeSpec definition and copy its generated OpenAPI YAML into the site. PARTIALLY VALID: public API exists; docs main links /api-reference instead of hand-written pages (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +omnibox-docs https://github.com/sourcegraph/docs/tree/omnibox-docs 2025-01-20 2025-01-28 590 jdorfman yes 34 740 905 https://github.com/sourcegraph/docs/pull/905 2025-01-20 MaedahBatool no closed unmerged 2025-01-29 DELETE: PR closed without merge Introduces Omnibox/Sourcegraph Chat documentation for intent detection between AI chat and code-search responses, personalized smart-search results, and reusable search context. It documents Enterprise Starter/Enterprise query workflows for symbol search, file search, exact string literals, and error lookups, and refreshes Cody Web, prompts, VS Code, and JetBrains pages for the new interface. NOT FOUND: no Omnibox / Sourcegraph Chat intent-detection feature in current code (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +patch-1 https://github.com/sourcegraph/docs/tree/patch-1 2025-10-21 2025-11-12 302 jdorfman yes 2 387 no PR DELETE?: no PR, idle >180d Adds a Stream API note linking to the community-maintained source-graph-stream-client for TypeScript/JavaScript on Node.js, browsers, and Deno. ALREADY DOCUMENTED: community stream client listed in api/stream-api/index.mdx (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396) +peterguy/fix-redirect-with-latest-version https://github.com/sourcegraph/docs/tree/peterguy/fix-redirect-with-latest-version 2025-01-24 2025-01-24 594 peterguy yes 1 750 923 https://github.com/sourcegraph/docs/pull/923 2025-01-24 peterguy yes closed unmerged 2025-01-28 DELETE: PR closed without merge Fixes middleware routing so URLs containing the configured latest version under /v/VERSION or /@VERSION are redirected to the equivalent unversioned documentation path; this is site tooling only. OUTDATED: src/middleware.ts handles latest-version redirects (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +peterguy/update-insights-loc-file-counts https://github.com/sourcegraph/docs/tree/peterguy/update-insights-loc-file-counts 2025-06-24 2025-06-24 443 peterguy yes 2 527 1206 https://github.com/sourcegraph/docs/pull/1206 2025-06-24 peterguy yes closed unmerged 2025-06-24 DELETE: PR closed without merge Adds Code Insights Inventory Stats docs for tracking file counts, lines of code, file size, and language trends. It says five inventory environment variables moved to site configuration with defaults, and adds INSIGHTS_INVENTORY_BATCH_SIZE to control repositories per worker batch and memory use. ALREADY DOCUMENTED in inventory-stats.mdx incl. INSIGHTS_INVENTORY_BATCH_SIZE (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396) +pgsql12-end-of-life https://github.com/sourcegraph/docs/tree/pgsql12-end-of-life 2024-09-09 2024-11-20 659 unknown (no GitHub login on commit) 3 981 808 https://github.com/sourcegraph/docs/pull/808 2024-11-20 AJKemps no closed unmerged 2024-11-20 DELETE: PR closed without merge Adds a Postgres 12 end-of-life notice saying Sourcegraph 5.10 built-in databases move to Postgres 16 with roughly 2.5 hours of first-upgrade downtime per TB indexed, while external databases must reach Postgres 16 before Sourcegraph 5.12. It also adds Code Search and Cody how-to-video index pages with introductory and advanced training links. ALREADY DOCUMENTED in self-hosted/postgres.mdx and postgres12-end-of-life-notice.mdx; the before-5.12 deadline wording is stale (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +pjlast/add-gerrit-exclude-field https://github.com/sourcegraph/docs/tree/pjlast/add-gerrit-exclude-field 2024-01-23 962 pjlast yes 0 1594 53 https://github.com/sourcegraph/docs/pull/53 2024-01-23 pjlast yes merged 2024-01-24 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +pjlast/licensing-docs-update https://github.com/sourcegraph/docs/tree/pjlast/licensing-docs-update 2024-01-16 969 pjlast yes 0 1617 37 https://github.com/sourcegraph/docs/pull/37 2024-01-15 pjlast yes merged 2024-01-17 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +pr https://github.com/sourcegraph/docs/tree/pr 2024-06-12 2024-06-12 820 jtibshirani no 5 1148 no PR DELETE?: no PR, idle >180d; author left org Revises Cody context and token-limit docs: Claude 3 Sonnet/Opus get separate 30,000-token @-mention and 15,000-token conversation limits, while other models share 7,000 tokens; tables distinguish Enterprise from Free/Pro and list output limits. It also reframes retrieval methods as keyword search, embeddings, and Sourcegraph Search. OUTDATED: token limits per tier no longer apply after Free/Pro sunset (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +prompting-guide https://github.com/sourcegraph/docs/tree/prompting-guide 2024-05-29 2024-06-19 813 MaedahBatool no 5 1121 367 https://github.com/sourcegraph/docs/pull/367 2024-05-29 chris-sev no closed unmerged 2025-02-10 DELETE: PR closed without merge; author left org Adds a Cody prompting guide recommending that users treat Cody like a new teammate, prepare code with descriptive names and documentation, provide specific tasks and file/symbol context, include examples and tests, iterate on prompts, and use Cody for boilerplate, tests, docs, and error handling. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +proxy-setup https://github.com/sourcegraph/docs/tree/proxy-setup 2024-05-22 2024-05-27 836 arafatkatze no 4 1197 342 https://github.com/sourcegraph/docs/pull/342 2024-05-22 arafatkatze no closed unmerged 2024-05-28 DELETE: PR closed without merge; author left org Adds a Cody proxy setup guide for HTTP/HTTPS/SOCKS configuration in VS Code and HTTP/SOCKS in JetBrains, including manual settings, authentication, restarts, curl tests, and trusting self-signed certificates on macOS and Windows. It says JetBrains auto-detection is not fully supported and HTTPS proxies are not supported. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +rakeshjosh2003-patch-1 https://github.com/sourcegraph/docs/tree/rakeshjosh2003-patch-1 2025-01-15 2025-01-16 603 rakeshjosh2003 yes 5 763 897 https://github.com/sourcegraph/docs/pull/897 2025-01-15 rakeshjosh2003 yes closed unmerged 2025-07-21 DELETE: PR closed without merge Adds a Cody FAQ entry saying API-only models can have custom input/output context windows by using a model override and an empty capabilities list, which prevents the model from appearing in Cody Web or IDEs. NOT FOUND: no evidence for the claim in current code (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +rakeshjosh2003-patch-2 https://github.com/sourcegraph/docs/tree/rakeshjosh2003-patch-2 2025-01-20 2025-01-20 599 rakeshjosh2003 yes 1 763 no PR DELETE?: no PR, idle >180d Adds executor troubleshooting for Kubernetes jobs exceeding the 5Gi job-data EmptyDir limit, recommending KUBERNETES_JOB_VOLUME_TYPE=emptyDir and KUBERNETES_JOB_VOLUME_SIZE=20Gi; it says the volume type may be emptyDir or pvc and defaults to emptyDir. ALREADY DOCUMENTED on main (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe) +rel/changelog/v5.4.2198 https://github.com/sourcegraph/docs/tree/rel/changelog/v5.4.2198 2024-05-23 2024-05-23 841 sourcegraph-bot-devx bot 1 1193 350 https://github.com/sourcegraph/docs/pull/350 2024-05-23 sourcegraph-bot-devx bot closed unmerged 2024-06-10 DELETE: PR closed without merge Adds a v5.4.2198 changelog covering release-pipeline changes and fixes for Batch Changes window ranges, auth-provider matching, executor AMI names, Cody Ignore errors, lightweight tags, Bedrock ARN handling, username deduplication, and container CVEs. NOT FOUND on docs main; releases.mdx is now table-driven. 5.4 is out of support, drop (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +rel/changelog/v5.7.0 https://github.com/sourcegraph/docs/tree/rel/changelog/v5.7.0 2024-09-05 2024-09-05 735 Chickensoupwithrice no 1 987 631 https://github.com/sourcegraph/docs/pull/631 2024-09-05 Chickensoupwithrice no closed unmerged 2024-09-05 DELETE: PR closed without merge; author left org Adds a large v5.7-era changelog entry whose product highlights include Batch Changes container-registry allow/deny lists, POST /.api/cody/context, OpenAI-compatible LLM API behavior, Search Jobs enabled unless DISABLE_SEARCH_JOBS is set, Perforce label support/cacheLabels, syntactic Go support, and search/code-navigation fixes. NOT FOUND on docs main; releases.mdx is now table-driven. 5.7 is out of support, drop (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +rel/changelog/v5.10.0-fix https://github.com/sourcegraph/docs/tree/rel/changelog/v5.10.0-fix 2024-11-27 2024-11-27 653 DaedalusG yes 3 836 819 https://github.com/sourcegraph/docs/pull/819 2024-11-27 DaedalusG yes closed unmerged 2024-11-27 DELETE: PR closed without merge Adds v5.10 upgrade guidance saying bundled database images move from Postgres 12 to Postgres 16/Wolfi, naming the new postgres16 images and warning external-database users about expected schema drift; automatic upgrades require Postgres 16 or SRC_AUTOUPGRADE_IGNORE_DRIFT=true. It also adds the v5.10 technical changelog, including modelConfiguration.systemPreInstruction, gpt-4o-mini, and a /models.json endpoint. OUTDATED: SRC_AUTOUPGRADE_IGNORE_DRIFT and migrator --from/--to removed in 6.12; PG16 move already documented (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +restimator https://github.com/sourcegraph/docs/tree/restimator 2024-04-25 2024-04-25 869 MaedahBatool no 1 1245 277 https://github.com/sourcegraph/docs/pull/277 2024-04-25 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Adds a Resource Estimator page/component with inputs for deployment type, users, repositories, total/largest repository size, largest LSIF index, and Code Insights. The calculation remains a placeholder that only logs state rather than producing resource estimates. N/A: unfinished resource estimator placeholder; no product claims +revamp-cody-docs https://github.com/sourcegraph/docs/tree/revamp-cody-docs 2024-09-17 2024-09-27 714 MaedahBatool no 13 950 658 https://github.com/sourcegraph/docs/pull/658 2024-09-17 MaedahBatool no closed unmerged 2025-07-19 DELETE: PR closed without merge; author left org Substantially expands Cody chat, VS Code installation, admin configuration, and Enterprise model pages, documenting @-mentions, OpenCtx providers, context filters, prompts, model selection, Ollama/offline use, experimental custom providers, Smart Apply, and inline edits. It claims Claude 3.5 Sonnet is the default for chat/edits, Enterprise can use Claude 3.5 through Gateway/BYOK cloud providers, and Free/Pro can configure experimental Google, Groq, OpenAI-compatible, and Ollama models. OUTDATED: Free/Pro tiers gone; page structure since rewritten (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +schema-sync- https://github.com/sourcegraph/docs/tree/schema-sync- 2025-07-16 2025-07-16 421 DaedalusG yes 13 476 1265 https://github.com/sourcegraph/docs/pull/1265 2025-07-16 DaedalusG yes closed unmerged 2025-07-16 DELETE: PR closed without merge Regenerates the code-host, site-settings, site-configuration, and Perforce reference pages from a newer Sourcegraph schema. The refresh documents modelConfiguration provider/model overrides and filters, embeddings controls, deprecated custom Deep Search models, Perforce proxy-rule modes, identity-provider references for code-host permissions, and numerous current authentication, Cody, tracing, and Code Insights settings. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +schema-sync-6.5.6969 https://github.com/sourcegraph/docs/tree/schema-sync-6.5.6969 2025-07-19 2025-07-19 419 DaedalusG yes 13 475 1272 https://github.com/sourcegraph/docs/pull/1272 2025-07-19 DaedalusG yes closed unmerged 2025-07-19 DELETE: PR closed without merge Refreshes generated timestamps across code-host, site configuration/settings, and Perforce reference pages to Sourcegraph v6.5.6969; apart from a small Bitbucket Cloud schema adjustment, there is no material hand-written documentation change. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +schema-sync-6.7.229 https://github.com/sourcegraph/docs/tree/schema-sync-6.7.229 2025-08-22 2025-08-22 385 sourcegraph-bot-devx bot 13 429 1335 https://github.com/sourcegraph/docs/pull/1335 2025-08-22 sourcegraph-bot-devx bot closed unmerged 2025-08-25 DELETE: PR closed without merge Refreshes generated timestamps across code-host, site configuration/settings, and Perforce reference pages to Sourcegraph v6.7.229; no substantive documentation content changes. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +schema-sync-6.11.5428 https://github.com/sourcegraph/docs/tree/schema-sync-6.11.5428 2026-01-08 2026-01-08 246 sourcegraph-bot-devx bot 13 257 1520 https://github.com/sourcegraph/docs/pull/1520 2026-01-08 sourcegraph-bot-devx bot closed unmerged 2026-01-08 DELETE: PR closed without merge Refreshes code-host, site configuration/settings, and Perforce schema references to Sourcegraph v6.11.5428. The site-config example adds entitlements.completionCredits with mode disabled, customGitFetch examples, and maxTimeoutSeconds set to 60. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +schema-sync-6.11.5639 https://github.com/sourcegraph/docs/tree/schema-sync-6.11.5639 2026-01-09 2026-01-09 245 sourcegraph-bot-devx bot 13 253 1525 https://github.com/sourcegraph/docs/pull/1525 2026-01-09 sourcegraph-bot-devx bot closed unmerged 2026-03-30 DELETE: PR closed without merge Refreshes generated code-host and site-configuration schema docs from Sourcegraph v6.11.5639. The site-config example adds `entitlements.completionCredits` with a disabled mode, removes `codeIntelAutoIndexing.policyManagementEnabled` and `slackConfigurationKey`, and changes several numeric example values to strings. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +search-jobs-is-in-beta https://github.com/sourcegraph/docs/tree/search-jobs-is-in-beta 2024-01-23 962 stefanhengl yes 0 1588 54 https://github.com/sourcegraph/docs/pull/54 2024-01-23 stefanhengl yes merged 2024-01-24 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +sg-5.3-dup https://github.com/sourcegraph/docs/tree/sg-5.3-dup 2024-01-25 2024-02-15 939 MaedahBatool no 31 1483 100 https://github.com/sourcegraph/docs/pull/100 2024-02-15 MaedahBatool no closed unmerged 2024-02-20 DELETE: PR closed without merge; author left org Reshapes the 5.3-era docs: adds pages for search filters and code-navigation features, expands search-jobs and Cody embeddings explanations, and removes the standalone Cody embeddings configuration/management pages and Cody usage-and-pricing page. It also updates gRPC upgrade material and marks 5.3 as the latest version. OUTDATED: embeddings removed from the product (remove_embeddings migration); docs main already reflects this (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396) +sg-may-release https://github.com/sourcegraph/docs/tree/sg-may-release 2024-04-25 2025-05-28 470 MaedahBatool no 2 1244 278 https://github.com/sourcegraph/docs/pull/278 2024-04-25 MaedahBatool no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Large 15.8 MB release-working branch sampled from its 1,345-file stat and first 200 KB: it broadly replaces the versioned 5.2 documentation with a newer site, navigation, redirects, branding, and UI/tooling. It adds an AI docs chatbot backed by BaseAI/Langbase, generated `llms.txt`, RSS and sitemap tooling, code-block/tab components, resource and feature-parity components, and supported-model configuration; generated/public files and lockfile churn dominate the diff. OUTDATED: superseded release-working branch; site, nav and chatbot tooling since rewritten +sg-next-6-9 https://github.com/sourcegraph/docs/tree/sg-next-6-9 2025-10-01 2025-10-01 345 stefanhengl yes 1 399 no PR DELETE?: no PR, idle >180d Adds Deep Search RBAC documentation for `deep_search:read` and `deep_search:write`; both permissions are granted to the User role by default, while site administrators receive all permissions. The Deep Search page says access can be restricted through default or custom roles. VALID: deep_search:read / deep_search:write RBAC permissions undocumented on main. Worth salvaging that part (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea) +sg-next-may28 https://github.com/sourcegraph/docs/tree/sg-next-may28 2025-05-26 2025-05-28 470 emidoots yes 6 559 1158 https://github.com/sourcegraph/docs/pull/1158 2025-05-26 MaedahBatool no closed unmerged 2025-05-30 DELETE: PR closed without merge Documents the Sourcegraph 6.4 release, including Deep Search as a disabled-by-default Enterprise research preview requiring Code Search, Cody, and Claude Sonnet 4, plus Bedrock model configuration. It replaces agentic chat docs with agentic context fetching (enabled by default, optional terminal and local MCP tools), documents Batch Changes fail-fast/re-execution, Claude 4 and reasoning-model configuration, and renames the default model field from `autocomplete` to `codeCompletion`. OUTDATED: stale May-2025 release snapshot (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea) +sh/batch-spec-version-next-release https://github.com/sourcegraph/docs/tree/sh/batch-spec-version-next-release 2024-06-21 2024-07-08 795 stefanhengl yes 8 1100 no PR DELETE?: no PR, idle >180d Adds Batch Spec YAML `version`, recommending version 2 for new specs and noting that unspecified specs default to version 1; the version controls the default search pattern type. It also reorganizes Code Search query docs, removes structural-search coverage, and substantially revises older Cody Enterprise enablement/model and navigation content. ALREADY DOCUMENTED: batch spec version 2 on main; branch also removes structural search, which still exists (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe) +sh-remove-cta-for-structural-search https://github.com/sourcegraph/docs/tree/sh-remove-cta-for-structural-search 2024-01-18 967 stefanhengl yes 0 1604 42 https://github.com/sourcegraph/docs/pull/42 2024-01-18 stefanhengl yes merged 2024-01-22 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +sourcegraph-pricing https://github.com/sourcegraph/docs/tree/sourcegraph-pricing 2025-01-16 2025-01-27 592 MaedahBatool no 20 744 901 https://github.com/sourcegraph/docs/pull/901 2025-01-16 MaedahBatool no closed unmerged 2025-01-29 DELETE: PR closed without merge; author left org Adds pricing pages for Free, Enterprise Starter, Enterprise, and Starter billing FAQs. It says Starter costs $19/seat/month with up to 50 users, 100 repositories, and 10 GB storage, while Enterprise Dedicated Cloud and Self-Hosted cost $59/user/month; it also documents Free's 200 monthly chat messages, Starter workspace administration, cancellation, payment, and repository indexing. OUTDATED: Enterprise Starter limits are now 500 seats / 25-50 GB; free-1 plan deprecated; docs main already has pricing/plans pages (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +sync/generated-docs https://github.com/sourcegraph/docs/tree/sync/generated-docs 2026-09-11 2026-09-11 0 buildkite-at-sourcegraph bot 1 0 1883 https://github.com/sourcegraph/docs/pull/1883 2026-09-09 sourcegraph-buildkite bot open review=APPROVED merge=UNSTABLE checks=FAILURE ACTIVE: open PR Refreshes generated admin code-host/site-config and telemetry references, self-hosted alert/dashboard references, and CLI pages (adding debug, search-jobs, snapshot, and teams) from the current product source; the content notes the 7.0 removal of single-container deployments. No tooling or unrelated hand-written docs change. VALID: active generated-docs sync PR #1883 from current product source; merge via its normal flow +sync/2024-03-19/11-37-43 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/11-37-43 2024-03-19 2024-03-19 906 jhchabran no 1 1385 no PR DELETE?: no PR, idle >180d; author left org A failed-looking sync that merely appends local source-file paths to 12 admin observability pages and 60 CLI reference pages, while deleting docs/cli/references/BUILD.bazel; it does not import actual generated content. Byte-for-byte identical to sync/2024-03-19/11-42-36. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-19/11-42-36 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/11-42-36 2024-03-19 2024-03-19 906 jhchabran no 1 1385 167 https://github.com/sourcegraph/docs/pull/167 2024-03-19 jhchabran no closed unmerged 2024-03-19 DELETE: PR closed without merge; author left org A failed-looking sync that merely appends local source-file paths to 12 admin observability pages and 60 CLI reference pages, while deleting docs/cli/references/BUILD.bazel; it does not import actual generated content. Byte-for-byte identical to sync/2024-03-19/11-37-43. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-19/12-42-24 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/12-42-24 2024-03-19 2024-03-19 906 jhchabran no 1 1385 no PR DELETE?: no PR, idle >180d; author left org Imports a full generated set of admin observability documentation (including very large alerts and dashboards pages) and the complete CLI reference, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Byte-for-byte identical to sync/2024-03-19/12-43-24. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-19/12-43-24 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/12-43-24 2024-03-19 2024-03-19 906 jhchabran no 1 1385 168 https://github.com/sourcegraph/docs/pull/168 2024-03-19 jhchabran no closed unmerged 2024-03-19 DELETE: PR closed without merge; author left org Imports a full generated set of admin observability documentation (including very large alerts and dashboards pages) and the complete CLI reference, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Byte-for-byte identical to sync/2024-03-19/12-42-24. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-19/22-21-04 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/22-21-04 2024-03-19 2024-03-19 905 jhchabran no 1 1377 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert and dashboard references and refreshes roughly 34 CLI reference pages after the Markdown-to-MDX transition, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Byte-for-byte identical to sync/2024-03-20/09-56-21. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/09-56-21 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/09-56-21 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert and dashboard references and refreshes roughly 34 CLI reference pages after the Markdown-to-MDX transition, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Byte-for-byte identical to sync/2024-03-19/22-21-04. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/11-02-29 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/11-02-29 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert and an expanded dashboard reference, plus the same broad CLI-reference refresh and BUILD.bazel deletion as the other March 20 runs; no product version is stated. Near-duplicate of sync/2024-03-20/15-24-48 and later March 20 runs, differing mainly in generated escaping/formatting. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/15-24-48 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/15-24-48 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/11-02-29 and sync/2024-03-20/15-33-32, with the same file/count stat but formatting differences. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/15-33-32 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/15-33-32 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/15-24-48 and the later March 20 runs, with generated escaping differences. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/15-36-36 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/15-36-36 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Byte-for-byte identical to sync/2024-03-20/15-40-05 and near-duplicate of sync/2024-03-20/15-33-32. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/15-40-05 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/15-40-05 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Byte-for-byte identical to sync/2024-03-20/15-36-36 and near-duplicate of sync/2024-03-20/15-33-32. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/15-50-12 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/15-50-12 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/15-33-32, differing in progressively escaped generated MDX. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/15-53-35 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/15-53-35 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/15-33-32, with HTML-entity and escaping differences. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/16-06-44 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/16-06-44 2024-03-20 2024-03-20 905 jhchabran no 1 1374 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/15-53-35 and the other same-stat March 20 runs. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/16-26-16 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/16-26-16 2024-03-20 2024-03-20 905 jhchabran no 1 1367 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/15-33-32 and the other same-stat March 20 runs, differing only in generated MDX escaping/formatting. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/17-10-19 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/17-10-19 2024-03-20 2024-03-20 905 jhchabran no 1 1367 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/16-26-16 and the other same-stat March 20 runs, with escaping differences. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/17-28-52 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/17-28-52 2024-03-20 2024-03-20 905 jhchabran no 1 1355 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/17-10-19 and the other same-stat March 20 runs, with escaping differences. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/18-50-55 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/18-50-55 2024-03-20 2024-03-20 904 jhchabran no 1 1355 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/17-28-52 and the other same-stat March 20 runs, with escaping differences. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/19-41-47 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/19-41-47 2024-03-20 2024-03-20 904 jhchabran no 1 1355 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/18-50-55 and the other same-stat March 20 runs, with escaping differences. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2024-03-20/19-56-25 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/19-56-25 2024-03-20 2024-03-20 904 jhchabran no 1 1355 no PR DELETE?: no PR, idle >180d; author left org Adds generated admin alert/dashboard references and refreshes roughly 34 CLI pages, while deleting docs/cli/references/BUILD.bazel; no product version is stated. Near-duplicate of sync/2024-03-20/19-41-47 and the other same-stat March 20 runs, with escaping differences. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2025-11-04/10-20-04 https://github.com/sourcegraph/docs/tree/sync/2025-11-04/10-20-04 2025-11-04 2025-11-04 311 burmudar yes 1 370 no PR DELETE?: no PR, idle >180d Regenerates the large admin observability alert/dashboard references and refreshes 43 CLI command pages; no product version is stated. It contains no tooling or unrelated hand-written documentation changes. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2025-12-16/09-46-27 https://github.com/sourcegraph/docs/tree/sync/2025-12-16/09-46-27 2025-12-16 2025-12-16 268 julialeex yes 1 278 no PR DELETE?: no PR, idle >180d Regenerates self-hosted alert/dashboard references and the Cody supported-models table (including Claude 4.5 models), with tiny CLI index and serve-git updates; model notes reference Sourcegraph 6.4+, 6.3.416, and 6.9.2509. Byte-for-byte identical to sync/2025-12-16/09-47-55. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2025-12-16/09-47-55 https://github.com/sourcegraph/docs/tree/sync/2025-12-16/09-47-55 2025-12-16 2025-12-16 268 julialeex yes 1 278 no PR DELETE?: no PR, idle >180d Regenerates self-hosted alert/dashboard references and the Cody supported-models table (including Claude 4.5 models), with tiny CLI index and serve-git updates; model notes reference Sourcegraph 6.4+, 6.3.416, and 6.9.2509. Byte-for-byte identical to sync/2025-12-16/09-46-27. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2025-12-18/15-21-26 https://github.com/sourcegraph/docs/tree/sync/2025-12-18/15-21-26 2025-12-18 2025-12-18 266 bobheadxi yes 1 270 1493 https://github.com/sourcegraph/docs/pull/1493 2025-12-18 bobheadxi yes closed unmerged 2025-12-18 DELETE: PR closed without merge Refreshes generated admin code-host, Perforce, settings, and site-configuration references from the December 18 product snapshot, replacing prior v6.11.1446 generation stamps. Near-duplicate of sync/2025-12-18/15-32-28 and sync/2025-12-18/15-33-59; differences are small generated site-config/link and timestamp changes. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2025-12-18/15-32-28 https://github.com/sourcegraph/docs/tree/sync/2025-12-18/15-32-28 2025-12-18 2025-12-18 266 bobheadxi yes 1 270 1494 https://github.com/sourcegraph/docs/pull/1494 2025-12-18 bobheadxi yes closed unmerged 2025-12-18 DELETE: PR closed without merge Refreshes generated admin code-host, Perforce, settings, and site-configuration references from the December 18 product snapshot, replacing prior v6.11.1446 generation stamps. Near-duplicate of sync/2025-12-18/15-21-26 and sync/2025-12-18/15-33-59; differences are small generated site-config/link and timestamp changes. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +sync/2025-12-18/15-33-59 https://github.com/sourcegraph/docs/tree/sync/2025-12-18/15-33-59 2025-12-18 2025-12-18 266 bobheadxi yes 1 270 1495 https://github.com/sourcegraph/docs/pull/1495 2025-12-18 bobheadxi yes closed unmerged 2025-12-18 DELETE: PR closed without merge Refreshes generated admin code-host, Perforce, settings, and site-configuration references from the December 18 product snapshot, replacing prior v6.11.1446 generation stamps. Near-duplicate of sync/2025-12-18/15-21-26 and sync/2025-12-18/15-32-28; differences are small generated site-config/link and timestamp changes. OUTDATED: generated from an older product version; superseded by the sourcegraph-buildkite sync/generated-docs PR #1883. Regenerate, do not merge +test-commit-signing https://github.com/sourcegraph/docs/tree/test-commit-signing 2024-12-11 2024-12-11 638 unknown (no GitHub login on commit) 1 813 845 https://github.com/sourcegraph/docs/pull/845 2024-12-11 loujar no closed unmerged 2024-12-11 DELETE: PR closed without merge no substantive change (README test line only) N/A: tooling/test/formatting/link fixes, no product claims +test-pr https://github.com/sourcegraph/docs/tree/test-pr 2023-12-15 2023-12-15 1000 MaedahBatool no 1 1659 11 https://github.com/sourcegraph/docs/pull/11 2023-12-15 MaedahBatool no closed unmerged 2023-12-15 DELETE: PR closed without merge; author left org no substantive change (README test text only) N/A: tooling/test/formatting/link fixes, no product claims +tl/less-purple-code-blocks https://github.com/sourcegraph/docs/tree/tl/less-purple-code-blocks 2025-02-20 2025-02-23 564 toolmantim no 2 687 992 https://github.com/sourcegraph/docs/pull/992 2025-02-20 toolmantim no closed unmerged 2025-05-28 DELETE: PR closed without merge; author left org Changes site styling only: replaces purple code-block and copy-button colors with neutral gray/slate styling and removes purple syntax-highlight defaults. N/A: tooling/test/formatting/link fixes, no product claims +tr/change-cloud-instance-page-title https://github.com/sourcegraph/docs/tree/tr/change-cloud-instance-page-title 2025-12-09 2025-12-09 276 taiyab yes 1 307 1470 https://github.com/sourcegraph/docs/pull/1470 2025-12-09 taiyab yes closed unmerged 2026-08-26 DELETE: PR closed without merge Renames the getting-started page title from “Create a Cloud instance” to “Sourcegraph Cloud.” ALREADY DOCUMENTED: cloud/index.mdx is titled Sourcegraph Cloud (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +ts-enablement-guides https://github.com/sourcegraph/docs/tree/ts-enablement-guides 2024-03-27 2024-04-01 892 unknown (no GitHub login on commit) 2 1322 209 https://github.com/sourcegraph/docs/pull/209 2024-03-27 MaedahBatool no closed unmerged 2024-10-11 DELETE: PR closed without merge Refactors shared Cody chat, web, VS Code, and JetBrains instructions into reusable MDX blocks and adds an Enterprise end-user start guide. It documents file/symbol context selection, code insertion, Cody for Web as experimental, extension installation, and Enterprise instance/token sign-in flows. OUTDATED: Free/Pro gone; Cody Web is not experimental (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +ty/cody-ignore https://github.com/sourcegraph/docs/tree/ty/cody-ignore 2024-05-02 2024-05-21 842 MaedahBatool no 29 1197 292 https://github.com/sourcegraph/docs/pull/292 2024-05-02 taras-yemets yes closed unmerged 2024-05-28 DELETE: PR closed without merge; author left org Expands Cody ignore-context docs to distinguish Enterprise Context Filters from `.cody/ignore`. It says Context Filters require Sourcegraph 5.4+, VS Code 1.20+ or JetBrains 6.0+, the `cody-context-filters-enabled` flag, and `cody.contextFilters` site config with RE2 include/exclude repository patterns. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +ty/gpt-4o-support-for-enterprise https://github.com/sourcegraph/docs/tree/ty/gpt-4o-support-for-enterprise 2024-05-29 2024-05-29 835 taras-yemets yes 1 1186 364 https://github.com/sourcegraph/docs/pull/364 2024-05-29 taras-yemets yes closed unmerged 2024-06-19 DELETE: PR closed without merge Updates the Cody supported-models table to say GPT-4o is supported for Enterprise as well as Pro. OUTDATED: GPT-4o dropped from the enterprise model catalog (https://sourcegraph.sourcegraph.com/deepsearch/39ca144e-3a89-49e6-9065-47d3495e7ed4) +update-pr-auditor https://github.com/sourcegraph/docs/tree/update-pr-auditor 2024-06-10 2024-06-10 823 unknown (no GitHub login on commit) 1 1157 398 https://github.com/sourcegraph/docs/pull/398 2024-06-10 BolajiOlajide yes closed unmerged 2024-06-10 DELETE: PR closed without merge Changes only CI tooling: the PR auditor workflow checks out `sourcegraph/devx-service` instead of `sourcegraph/pr-auditor` and runs `go run ./cmd/pr-auditor` instead of `check-pr.sh`. N/A: tooling/test/formatting/link fixes, no product claims +update-search-jobs-docs https://github.com/sourcegraph/docs/tree/update-search-jobs-docs 2024-01-22 963 stefanhengl yes 0 1603 40 https://github.com/sourcegraph/docs/pull/40 2024-01-17 stefanhengl yes merged 2024-01-23 DELETE: no commits beyond main no diff: branch tip is already in main N/A: no diff, branch tip is already in main +vb/deepsearch-search-contexts-docs https://github.com/sourcegraph/docs/tree/vb/deepsearch-search-contexts-docs 2026-05-01 2026-05-01 133 valerybugakov yes 1 114 1766 https://github.com/sourcegraph/docs/pull/1766 2026-05-01 valerybugakov yes closed unmerged 2026-05-06 DELETE: PR closed without merge Documents that Deep Search can search query-based contexts containing repository, file, language, case, and content filters, but can only enumerate repositories when the context has repository constraints. It recommends direct searching or repository-only/repository-defined contexts when listing fails. ALREADY DOCUMENTED; claimed search-context limitation NOT FOUND in code (https://sourcegraph.sourcegraph.com/deepsearch/7d61aa33-2fff-4c62-a9fe-0abb9929a4ea) +vincent/add-gql-ratelimits https://github.com/sourcegraph/docs/tree/vincent/add-gql-ratelimits 2023-12-27 989 evict no 0 1642 17 https://github.com/sourcegraph/docs/pull/17 2023-12-27 evict no merged 2023-12-27 DELETE: no commits beyond main; author left org no diff: branch tip is already in main N/A: no diff, branch tip is already in main +vk/add-search-filters-panel-doc https://github.com/sourcegraph/docs/tree/vk/add-search-filters-panel-doc 2024-02-12 2024-02-12 942 taiyab yes 4 1507 89 https://github.com/sourcegraph/docs/pull/89 2024-02-12 vovakulikov yes closed unmerged 2024-02-12 DELETE: PR closed without merge Adds a Code Search Filters UI page explaining that panel options derive from returned matches, default searches cover content/repository/file types, and filters are non-exhaustive unless `count:all` is used. It says selected filters persist in URLs, can be moved into the query, and apply globally, which can produce unexpected results with complex AND/OR queries. ALREADY DOCUMENTED in search-filters.mdx (https://sourcegraph.sourcegraph.com/deepsearch/0223cab2-d3a8-48a3-b728-693f8ded4396) +vsc-hotkeys https://github.com/sourcegraph/docs/tree/vsc-hotkeys 2024-04-05 2024-04-05 889 MaedahBatool no 1 1292 239 https://github.com/sourcegraph/docs/pull/239 2024-04-05 MaedahBatool no closed unmerged 2025-07-19 DELETE: PR closed without merge; author left org Adds Cody for VS Code instructions for finding bindable keyboard shortcuts under the Cody sidebar's Settings & Support menu. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +wb/exec-install-binary-exec https://github.com/sourcegraph/docs/tree/wb/exec-install-binary-exec 2026-07-23 2026-07-23 50 burmudar yes 1 61 1824 https://github.com/sourcegraph/docs/pull/1824 2026-07-23 burmudar yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS REVIEW: open PR idle 30-90d Updates binary executor deployment to install both `src-cli` and `batch-exec` in Docker-only mode, noting that executors automatically download a matching internal `batch-exec` binary. OUTDATED: executor install no longer installs src-cli (https://sourcegraph.sourcegraph.com/deepsearch/44d74fd9-7e50-41dd-996b-3190bd2828fe) +wb/mcp-tabs https://github.com/sourcegraph/docs/tree/wb/mcp-tabs 2025-11-21 2025-11-21 294 burmudar yes 1 340 1440 https://github.com/sourcegraph/docs/pull/1440 2025-11-21 burmudar yes closed unmerged 2025-11-27 DELETE: PR closed without merge Reformats the Sourcegraph MCP API setup page into tabs for Amp VS Code, Amp CLI, Claude Code, Claude Desktop, Cursor, and other clients while preserving their token/OAuth configuration examples. The substantive setup content is unchanged. ALREADY DOCUMENTED (https://sourcegraph.sourcegraph.com/deepsearch/15cee0a2-d598-4086-9f0b-b1b68cdf8504) +wb/token-test https://github.com/sourcegraph/docs/tree/wb/token-test 2025-05-16 2025-05-16 483 burmudar yes 1 567 1142 https://github.com/sourcegraph/docs/pull/1142 2025-05-16 sourcegraph-bot-devx bot closed unmerged 2025-05-16 DELETE: PR closed without merge no substantive change (empty file only) N/A: tooling/test/formatting/link fixes, no product claims +wb/use-mise https://github.com/sourcegraph/docs/tree/wb/use-mise 2025-05-22 2025-05-22 477 burmudar yes 1 563 1151 https://github.com/sourcegraph/docs/pull/1151 2025-05-22 burmudar yes closed unmerged 2025-05-22 DELETE: PR closed without merge Changes only CI tooling by adding a `.use-mise` marker that tells stateless CI agents to install tools with mise rather than ASDF during the migration. N/A: tooling/test/formatting/link fixes, no product claims +wg/rel/extra-note-on-PG16-upgrade https://github.com/sourcegraph/docs/tree/wg/rel/extra-note-on-PG16-upgrade 2025-01-31 2025-02-01 587 Chickensoupwithrice no 4 739 945 https://github.com/sourcegraph/docs/pull/945 2025-01-31 DaedalusG yes closed unmerged 2025-02-03 DELETE: PR closed without merge; author left org Adds Docker Compose and Kubernetes upgrade guidance for moving built-in PostgreSQL 12 databases to PostgreSQL 16 using images available from Sourcegraph 5.10. It adds a detailed Docker Compose 6.0+ runbook covering database-only startup, renamed images, Migrator `upgrade --from/--to`, optional dry-run, and restarting services. OUTDATED: migrator upgrade --from/--to removed in 6.12; PG12 to PG16 runbook already on main (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +wg/rel/extract-custom-description-from-docs-schemas https://github.com/sourcegraph/docs/tree/wg/rel/extract-custom-description-from-docs-schemas 2025-06-26 2025-06-26 442 DaedalusG yes 1 515 1215 https://github.com/sourcegraph/docs/pull/1215 2025-06-26 DaedalusG yes closed unmerged 2025-06-26 DELETE: PR closed without merge Adds generated configuration notes and security guidance to schema-backed docs for all major code hosts, Perforce, site configuration, and settings. The additions describe authentication, repository discovery/filtering, permissions, regional or polling behavior, and least-privilege/credential-rotation practices, preparing custom descriptions for automated schema sync. OUTDATED: hand-edits generated schema reference pages that sync/generated-docs regenerates; would be overwritten +wg/rel/update-latest-5.10.3940 https://github.com/sourcegraph/docs/tree/wg/rel/update-latest-5.10.3940 2024-12-19 2024-12-19 631 DaedalusG yes 1 797 867 https://github.com/sourcegraph/docs/pull/867 2024-12-19 DaedalusG yes closed unmerged 2024-12-19 DELETE: PR closed without merge Adds Sourcegraph 5.10.3940 to the releases page as the latest 5.10 release. OUTDATED: releases.mdx renders SupportedReleasesTable from data; 5.10 out of support (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +wg/remove-ref-to-old-docsite-testing https://github.com/sourcegraph/docs/tree/wg/remove-ref-to-old-docsite-testing 2024-03-28 2024-03-28 896 DaedalusG yes 1 1312 218 https://github.com/sourcegraph/docs/pull/218 2024-03-28 DaedalusG yes closed unmerged 2024-04-29 DELETE: PR closed without merge Rewrites current and versioned 5.2 contributor docs for testing documentation changes, replacing references to the old docs-site workflow with local `pnpm dev`, production builds, and Vercel preview deployments. It also trims obsolete local-monitoring and testing-principles references. OUTDATED: touches versioned 5.2 contributor docs that no longer exist on main; pnpm dev / Vercel preview flow already documented +will/rules_apko_updates https://github.com/sourcegraph/docs/tree/will/rules_apko_updates 2024-04-05 2024-04-05 889 willdollman no 2 1287 237 https://github.com/sourcegraph/docs/pull/237 2024-04-05 willdollman no closed unmerged 2024-05-07 DELETE: PR closed without merge; author left org Updates developer Wolfi/apko instructions: `sg wolfi image` builds the base image and automatically refreshes its lock, while Bazel builds the full Sourcegraph image. It says Buildkite publishes changed packages to the development repository and provides local testing instructions. MOSTLY ACCURATE but belongs upstream: wolfi-images/README.md in sourcegraph/sourcegraph already covers it; lock refresh is sg wolfi lock, not part of sg wolfi image (https://sourcegraph.sourcegraph.com/deepsearch/a09b0e4c-0875-4195-b1ad-ab142e29f646) +will/test-pr https://github.com/sourcegraph/docs/tree/will/test-pr 2024-04-23 2024-04-23 871 willdollman no 1 1248 273 https://github.com/sourcegraph/docs/pull/273 2024-04-23 willdollman no closed unmerged 2024-04-30 DELETE: PR closed without merge; author left org no substantive change (README test text only) N/A: tooling/test/formatting/link fixes, no product claims +will/test-pr2 https://github.com/sourcegraph/docs/tree/will/test-pr2 2024-10-22 2024-10-22 689 willdollman no 1 913 726 https://github.com/sourcegraph/docs/pull/726 2024-10-22 willdollman no closed unmerged 2024-10-22 DELETE: PR closed without merge; author left org no substantive change (README test text only) N/A: tooling/test/formatting/link fixes, no product claims +will/test-pr-2 https://github.com/sourcegraph/docs/tree/will/test-pr-2 2024-04-23 871 willdollman no 0 1246 no PR DELETE: no commits beyond main; author left org no diff: branch tip is already in main N/A: no diff, branch tip is already in main +JayOO2/docs:patch-2 (fork) https://github.com/JayOO2/docs/tree/patch-2 2025-12-16 269 JayOO2 no 1478 https://github.com/sourcegraph/docs/pull/1478 2025-12-16 JayOO2 no open review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE STALE: open PR idle >90d, ping author or close; author left org Changes only development tooling by adding a universal Microsoft Dev Container configuration (`mcr.microsoft.com/devcontainers/universal:2`). N/A: tooling/test/formatting/link fixes, no product claims +TheNoumanDev/docs:images-alt-fixes (fork) https://github.com/TheNoumanDev/docs/tree/images-alt-fixes 2026-03-27 167 TheNoumanDev no 1696 https://github.com/sourcegraph/docs/pull/1696 2026-03-19 TheNoumanDev no open review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE STALE: open PR idle >90d, ping author or close; author left org Adds descriptive alt text to screenshots and animations across webhooks, Batch Changes, Code Insights, Cody, browser integration, and self-hosted deployment/troubleshooting pages. It also fixes small typos in Cody support and browser-search instructions without changing product behavior. PARTIALLY VALID: most images already have alt text on main; a few empty alts remain (admin/webhooks/incoming.mdx Azure DevOps steps). Small salvage (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) +rvkasper/docs:patch-2 (fork) https://github.com/rvkasper/docs/tree/patch-2 2026-06-24 78 rvkasper no 1790 https://github.com/sourcegraph/docs/pull/1790 2026-06-22 rvkasper no open review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE REVIEW: open PR idle 30-90d; author left org Rewrites the Windows PowerShell `src` CLI install example to preserve the registry PATH as an expandable string, remove duplicate `%ProgramFiles%\Sourcegraph` entries, and refresh the current process PATH after installation. ALREADY DOCUMENTED (different approach): cli/explanations/windows.mdx already refreshes the current-process PATH (https://sourcegraph.sourcegraph.com/deepsearch/90890366-ec4b-497d-8afc-2876cd37041b) diff --git a/reports/branches/branches-and-prs.tsv b/reports/branches/branches-and-prs.tsv new file mode 100644 index 000000000..4bb3ead3d --- /dev/null +++ b/reports/branches/branches-and-prs.tsv @@ -0,0 +1,53 @@ +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 +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 213 1615 https://github.com/sourcegraph/docs/pull/1615 2026-02-18 cbrnrd yes closed unmerged 2026-03-04 DELETE: PR closed without merge +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 70 bobheadxi yes 1 85 no PR REVIEW: no PR, idle 30-180d +agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 https://github.com/sourcegraph/docs/tree/agentic-batch-changes/0664c2ca541672c2636927b735e66a9500f1447eebf156ade48cc77d03b760d2 2026-04-15 2026-04-15 150 sourcegraph-bot bot 1 136 1748 https://github.com/sourcegraph/docs/pull/1748 2026-04-15 jdorfman yes closed unmerged 2026-04-15 DELETE: PR closed without merge +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 8 no PR WIP?: recent commits, no PR yet +docs/scip-docs-refresh https://github.com/sourcegraph/docs/tree/docs/scip-docs-refresh 2026-02-16 2026-02-17 206 trly yes 2 215 no PR DELETE?: no PR, idle >180d +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 87 bobheadxi yes 1 103 1785 https://github.com/sourcegraph/docs/pull/1785 2026-06-16 bobheadxi yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS WIP: draft PR +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 40 1851 https://github.com/sourcegraph/docs/pull/1851 2026-09-03 bahrmichael yes open review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS ACTIVE: open PR +eg-auth-token-clarifications https://github.com/sourcegraph/docs/tree/eg-auth-token-clarifications 2026-04-17 2026-04-17 147 enriquegh yes 1 130 1754 https://github.com/sourcegraph/docs/pull/1754 2026-04-17 enriquegh yes open review=APPROVED merge=UNKNOWN checks=SUCCESS STALE: open PR idle >90d, ping author or close +eg-chat-vision https://github.com/sourcegraph/docs/tree/eg-chat-vision 2025-12-11 2025-12-11 274 enriquegh yes 1 308 1474 https://github.com/sourcegraph/docs/pull/1474 2025-12-11 enriquegh yes open review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS STALE: open PR idle >90d, ping author or close +es/cs https://github.com/sourcegraph/docs/tree/es/cs 2026-04-26 2026-04-26 138 eseliger yes 2 124 1760 https://github.com/sourcegraph/docs/pull/1760 2026-04-26 eseliger yes open review=APPROVED merge=UNKNOWN checks=SUCCESS REVIEW: open PR idle 30-90d +fix-broken-links-and-anchors https://github.com/sourcegraph/docs/tree/fix-broken-links-and-anchors 2026-09-07 2026-09-07 4 marcleblanc2 yes 1 34 1861 https://github.com/sourcegraph/docs/pull/1861 2026-09-06 marcleblanc2 yes closed unmerged 2026-09-09 DELETE: PR closed without merge +hawkse/fix-legacy-current-version-manifest https://github.com/sourcegraph/docs/tree/hawkse/fix-legacy-current-version-manifest 2026-08-31 2026-09-01 10 HawkSE yes 3 40 1849 https://github.com/sourcegraph/docs/pull/1849 2026-08-31 HawkSE yes closed unmerged 2026-09-04 DELETE: PR closed without merge +hello-world-readme-f9e3d1 https://github.com/sourcegraph/docs/tree/hello-world-readme-f9e3d1 2026-06-03 2026-06-03 100 vovakulikov yes 1 110 1778 https://github.com/sourcegraph/docs/pull/1778 2026-06-03 vovakulikov yes closed unmerged 2026-06-11 DELETE: PR closed without merge +jhh/deepsearch-guide-troubleshooting https://github.com/sourcegraph/docs/tree/jhh/deepsearch-guide-troubleshooting 2026-03-12 2026-03-12 183 jasonhawkharris yes 2 171 1683 https://github.com/sourcegraph/docs/pull/1683 2026-03-12 jasonhawkharris yes closed unmerged 2026-03-16 DELETE: PR closed without merge +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 193 julialeex yes 1 184 1664 https://github.com/sourcegraph/docs/pull/1664 2026-03-02 julialeex yes closed unmerged 2026-03-02 DELETE: PR closed without merge +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 73 1817 https://github.com/sourcegraph/docs/pull/1817 2026-07-16 keegancsmith yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS WIP: draft PR +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 193 1581 https://github.com/sourcegraph/docs/pull/1581 2026-02-03 keegancsmith yes open review=APPROVED merge=UNKNOWN checks=SUCCESS STALE: open PR idle >90d, ping author or close +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 203 marcleblanc2 yes 6 205 1629 https://github.com/sourcegraph/docs/pull/1629 2026-02-20 marcleblanc2 yes draft review=APPROVED merge=UNKNOWN checks=SUCCESS WIP: draft PR +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 8 1943 https://github.com/sourcegraph/docs/pull/1943 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS ACTIVE: open PR +marc/check-links/upstream-generated-files https://github.com/sourcegraph/docs/tree/marc/check-links/upstream-generated-files 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 12 1944 https://github.com/sourcegraph/docs/pull/1944 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE ACTIVE: open PR +marc/check-redirects https://github.com/sourcegraph/docs/tree/marc/check-redirects 2026-09-11 2026-09-11 0 marcleblanc2 yes 3 8 1935 https://github.com/sourcegraph/docs/pull/1935 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/docs/branch-naming https://github.com/sourcegraph/docs/tree/marc/docs/branch-naming 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 4 1952 https://github.com/sourcegraph/docs/pull/1952 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS WIP: draft PR +marc/docs/check-example-hostnames https://github.com/sourcegraph/docs/tree/marc/docs/check-example-hostnames 2026-09-08 2026-09-08 4 marcleblanc2 yes 7 34 1933 https://github.com/sourcegraph/docs/pull/1933 2026-09-11 marcleblanc2 yes draft merge=UNSTABLE checks=FAILURE WIP: draft PR +marc/docs/normalize-example-hostnames https://github.com/sourcegraph/docs/tree/marc/docs/normalize-example-hostnames 2026-09-08 2026-09-08 4 marcleblanc2 yes 3 34 1932 https://github.com/sourcegraph/docs/pull/1932 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/fix-dead-section-links https://github.com/sourcegraph/docs/tree/marc/fix-dead-section-links 2026-09-07 2026-09-07 4 marcleblanc2 yes 1 34 1925 https://github.com/sourcegraph/docs/pull/1925 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/fix-moved-page-links https://github.com/sourcegraph/docs/tree/marc/fix-moved-page-links 2026-09-07 2026-09-07 4 marcleblanc2 yes 1 34 1926 https://github.com/sourcegraph/docs/pull/1926 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/fix-reworded-anchors-admin https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-admin 2026-09-07 2026-09-07 4 marcleblanc2 yes 2 34 1927 https://github.com/sourcegraph/docs/pull/1927 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/fix-reworded-anchors-cody-batch-insights https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-cody-batch-insights 2026-09-07 2026-09-07 4 marcleblanc2 yes 2 34 1930 https://github.com/sourcegraph/docs/pull/1930 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/fix-reworded-anchors-misc https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-misc 2026-09-07 2026-09-07 4 marcleblanc2 yes 1 34 1931 https://github.com/sourcegraph/docs/pull/1931 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/fix-reworded-anchors-search-nav https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-search-nav 2026-09-07 2026-09-07 4 marcleblanc2 yes 1 34 1929 https://github.com/sourcegraph/docs/pull/1929 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/fix-reworded-anchors-self-hosted https://github.com/sourcegraph/docs/tree/marc/fix-reworded-anchors-self-hosted 2026-09-07 2026-09-07 4 marcleblanc2 yes 1 34 1928 https://github.com/sourcegraph/docs/pull/1928 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/fragment-redirects https://github.com/sourcegraph/docs/tree/marc/fragment-redirects 2026-09-08 2026-09-08 4 marcleblanc2 yes 1 34 1934 https://github.com/sourcegraph/docs/pull/1934 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/page-views-report https://github.com/sourcegraph/docs/tree/marc/page-views-report 2026-09-09 2026-09-11 0 marcleblanc2 yes 16 32 1938 https://github.com/sourcegraph/docs/pull/1938 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/redirect-probe https://github.com/sourcegraph/docs/tree/marc/redirect-probe 2026-09-09 2026-09-10 1 marcleblanc2 yes 22 32 1939 https://github.com/sourcegraph/docs/pull/1939 2026-09-11 marcleblanc2 yes draft merge=DIRTY checks=FAILURE WIP: draft PR +marc/remove-stale-version-notes https://github.com/sourcegraph/docs/tree/marc/remove-stale-version-notes 2026-09-08 2026-09-08 4 marcleblanc2 yes 1 34 1936 https://github.com/sourcegraph/docs/pull/1936 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/remove-technical-changelog https://github.com/sourcegraph/docs/tree/marc/remove-technical-changelog 2026-09-09 2026-09-09 2 marcleblanc2 yes 1 32 1937 https://github.com/sourcegraph/docs/pull/1937 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/reports/branch-audit https://github.com/sourcegraph/docs/tree/marc/reports/branch-audit 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 5 1950 https://github.com/sourcegraph/docs/pull/1950 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS WIP: draft PR +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 344 1924 https://github.com/sourcegraph/docs/pull/1924 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +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 12 1942 https://github.com/sourcegraph/docs/pull/1942 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +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 12 1945 https://github.com/sourcegraph/docs/pull/1945 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE ACTIVE: open PR +marc/spellcheck-fix-line-and-patch-comments https://github.com/sourcegraph/docs/tree/marc/spellcheck-fix-line-and-patch-comments 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 5 1947 https://github.com/sourcegraph/docs/pull/1947 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS ACTIVE: open PR +marc/test-check-links-breaks-link https://github.com/sourcegraph/docs/tree/marc/test-check-links-breaks-link 2026-09-10 2026-09-10 1 marcleblanc2 yes 23 28 1940 https://github.com/sourcegraph/docs/pull/1940 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/test-pr-checks-broken-2 https://github.com/sourcegraph/docs/tree/marc/test-pr-checks-broken-2 2026-09-11 2026-09-11 0 marcleblanc2 yes 14 5 1948 https://github.com/sourcegraph/docs/pull/1948 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +marc/test-pr-checks-remediated-2 https://github.com/sourcegraph/docs/tree/marc/test-pr-checks-remediated-2 2026-09-11 2026-09-11 0 marcleblanc2 yes 14 5 1949 https://github.com/sourcegraph/docs/pull/1949 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS WIP: draft PR +marc/todo https://github.com/sourcegraph/docs/tree/marc/todo 2026-09-11 2026-09-11 0 marcleblanc2 yes 6 4 1951 https://github.com/sourcegraph/docs/pull/1951 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS WIP: draft PR +sg-next-6-9 https://github.com/sourcegraph/docs/tree/sg-next-6-9 2025-10-01 2025-10-01 345 stefanhengl yes 1 403 no PR DELETE?: no PR, idle >180d +sync/generated-docs https://github.com/sourcegraph/docs/tree/sync/generated-docs 2026-09-11 2026-09-11 0 buildkite-at-sourcegraph bot 1 4 1883 https://github.com/sourcegraph/docs/pull/1883 2026-09-09 sourcegraph-buildkite bot open review=APPROVED merge=UNKNOWN checks=FAILURE ACTIVE: open PR +vb/deepsearch-search-contexts-docs https://github.com/sourcegraph/docs/tree/vb/deepsearch-search-contexts-docs 2026-05-01 2026-05-01 133 valerybugakov yes 1 118 1766 https://github.com/sourcegraph/docs/pull/1766 2026-05-01 valerybugakov yes closed unmerged 2026-05-06 DELETE: PR closed without merge +wb/exec-install-binary-exec https://github.com/sourcegraph/docs/tree/wb/exec-install-binary-exec 2026-07-23 2026-07-23 50 burmudar yes 1 65 1824 https://github.com/sourcegraph/docs/pull/1824 2026-07-23 burmudar yes open review=REVIEW_REQUIRED merge=UNKNOWN checks=SUCCESS REVIEW: open PR idle 30-90d +JayOO2/docs:patch-2 (fork) https://github.com/JayOO2/docs/tree/patch-2 2025-12-16 270 JayOO2 no 1478 https://github.com/sourcegraph/docs/pull/1478 2025-12-16 JayOO2 no open review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE STALE: open PR idle >90d, ping author or close; author left org +TheNoumanDev/docs:images-alt-fixes (fork) https://github.com/TheNoumanDev/docs/tree/images-alt-fixes 2026-03-27 168 TheNoumanDev no 1696 https://github.com/sourcegraph/docs/pull/1696 2026-03-19 TheNoumanDev no open review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE STALE: open PR idle >90d, ping author or close; author left org +rvkasper/docs:patch-2 (fork) https://github.com/rvkasper/docs/tree/patch-2 2026-06-24 79 rvkasper no 1790 https://github.com/sourcegraph/docs/pull/1790 2026-06-22 rvkasper no open review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE REVIEW: open PR idle 30-90d; author left org