From 2e49ea5137d070fd4013ff24d65c3cc6d78426d2 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Fri, 11 Sep 2026 11:08:12 -0600 Subject: [PATCH 1/2] reports/branches: Add branch and pull request audit script with report Lists every branch on GitHub with its age, tip author, whether that author is still in the sourcegraph org, ahead/behind main, the pull request it belongs to and a suggested action. Run with `npm run branch-audit`; needs the gh CLI logged in as an org member. --- package.json | 1 + reports/branches/branch-audit.mjs | 416 ++++++++++++++++++++++++++ reports/branches/branches-and-prs.tsv | 338 +++++++++++++++++++++ 3 files changed, 755 insertions(+) create mode 100644 reports/branches/branch-audit.mjs create mode 100644 reports/branches/branches-and-prs.tsv 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.tsv b/reports/branches/branches-and-prs.tsv new file mode 100644 index 000000000..384c7c814 --- /dev/null +++ b/reports/branches/branches-and-prs.tsv @@ -0,0 +1,338 @@ +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 +MaedahBatool-patch-1 https://github.com/sourcegraph/docs/tree/MaedahBatool-patch-1 2024-06-25 2024-06-25 807 MaedahBatool no 1 1112 449 https://github.com/sourcegraph/docs/pull/449 2024-06-21 MaedahBatool no merged 2024-06-21 DELETE: PR already merged; author left org +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 +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 +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 +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 +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 +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 +add-pricing-in-nav https://github.com/sourcegraph/docs/tree/add-pricing-in-nav 2024-01-04 2024-01-04 980 MaedahBatool no 1 1635 24 https://github.com/sourcegraph/docs/pull/24 2024-01-04 MaedahBatool no merged 2024-01-04 DELETE: PR already merged; author left org +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 +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 +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 +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 +amenne-branch1-vscode https://github.com/sourcegraph/docs/tree/amenne-branch1-vscode 2024-01-05 2024-01-08 976 MaedahBatool no 3 1631 25 https://github.com/sourcegraph/docs/pull/25 2024-01-05 amenne yes merged 2024-01-08 DELETE: PR already merged; author left org +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 +aramaraju-update-Enterprise-models https://github.com/sourcegraph/docs/tree/aramaraju-update-Enterprise-models 2024-06-12 2024-06-12 820 aramaraju no 1 1146 419 https://github.com/sourcegraph/docs/pull/419 2024-06-12 aramaraju no merged 2024-06-12 DELETE: PR already merged; author left org +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 +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 +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 +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 +broken-links https://github.com/sourcegraph/docs/tree/broken-links 2023-12-15 2023-12-15 1000 MaedahBatool no 1 1659 12 https://github.com/sourcegraph/docs/pull/12 2023-12-15 MaedahBatool no merged 2023-12-18 DELETE: PR already merged; author left org +build/lint-warnings-and-caniuse https://github.com/sourcegraph/docs/tree/build/lint-warnings-and-caniuse 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 4 1909 https://github.com/sourcegraph/docs/pull/1909 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR +changelog https://github.com/sourcegraph/docs/tree/changelog 2024-01-22 2024-01-22 962 MaedahBatool no 3 1596 50 https://github.com/sourcegraph/docs/pull/50 2024-01-22 MaedahBatool no merged 2024-01-22 DELETE: PR already merged; author left org +check-links/upstream-generated-files https://github.com/sourcegraph/docs/tree/check-links/upstream-generated-files 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 8 1910 https://github.com/sourcegraph/docs/pull/1910 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR +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 +check-redirects https://github.com/sourcegraph/docs/tree/check-redirects 2026-09-11 2026-09-11 0 marcleblanc2 yes 3 4 1880 https://github.com/sourcegraph/docs/pull/1880 2026-09-08 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR +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 +ci/vercel-build-failure-report https://github.com/sourcegraph/docs/tree/ci/vercel-build-failure-report 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 1 1918 https://github.com/sourcegraph/docs/pull/1918 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR +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 +cloud-docs https://github.com/sourcegraph/docs/tree/cloud-docs 2024-01-15 2024-01-15 969 MaedahBatool no 1 1619 38 https://github.com/sourcegraph/docs/pull/38 2024-01-15 MaedahBatool no merged 2024-01-15 DELETE: PR already merged; author left org +cloud-trial-updates https://github.com/sourcegraph/docs/tree/cloud-trial-updates 2024-01-19 2024-01-20 965 amenne yes 3 1602 46 https://github.com/sourcegraph/docs/pull/46 2024-01-19 amenne yes merged 2024-01-22 DELETE: PR already merged +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 +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 +cody-auth-third-party https://github.com/sourcegraph/docs/tree/cody-auth-third-party 2024-01-18 2024-01-18 966 MaedahBatool no 1 1603 45 https://github.com/sourcegraph/docs/pull/45 2024-01-18 MaedahBatool no merged 2024-01-18 DELETE: PR already merged; author left org +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 +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 +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 +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 +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 +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 +dax/update_docs https://github.com/sourcegraph/docs/tree/dax/update_docs 2024-02-13 2024-02-13 940 daxmc99 no 1 1491 98 https://github.com/sourcegraph/docs/pull/98 2024-02-13 daxmc99 no merged 2024-02-13 DELETE: PR already merged; author left org +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 +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 +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 +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 +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 +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 +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 +docs/check-example-hostnames https://github.com/sourcegraph/docs/tree/docs/check-example-hostnames 2026-09-08 2026-09-08 3 marcleblanc2 yes 7 30 1878 https://github.com/sourcegraph/docs/pull/1878 2026-09-08 marcleblanc2 yes draft merge=CLEAN checks=SUCCESS WIP: draft PR +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 +docs/normalize-example-hostnames https://github.com/sourcegraph/docs/tree/docs/normalize-example-hostnames 2026-09-08 2026-09-08 3 marcleblanc2 yes 3 30 1876 https://github.com/sourcegraph/docs/pull/1876 2026-09-08 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +fix-dead-section-links https://github.com/sourcegraph/docs/tree/fix-dead-section-links 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1865 https://github.com/sourcegraph/docs/pull/1865 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +fix-discord-link https://github.com/sourcegraph/docs/tree/fix-discord-link 2024-01-08 2024-01-08 976 MaedahBatool no 1 1632 26 https://github.com/sourcegraph/docs/pull/26 2024-01-08 MaedahBatool no merged 2024-01-08 DELETE: PR already merged; author left org +fix-intro https://github.com/sourcegraph/docs/tree/fix-intro 2024-01-19 2024-01-19 965 MaedahBatool no 1 1602 47 https://github.com/sourcegraph/docs/pull/47 2024-01-19 MaedahBatool no merged 2024-01-19 DELETE: PR already merged; author left org +fix-moved-page-links https://github.com/sourcegraph/docs/tree/fix-moved-page-links 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1866 https://github.com/sourcegraph/docs/pull/1866 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +fix-reworded-anchors-admin https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-admin 2026-09-07 2026-09-07 3 marcleblanc2 yes 2 30 1868 https://github.com/sourcegraph/docs/pull/1868 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +fix-reworded-anchors-cody-batch-insights https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-cody-batch-insights 2026-09-07 2026-09-07 3 marcleblanc2 yes 2 30 1871 https://github.com/sourcegraph/docs/pull/1871 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +fix-reworded-anchors-misc https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-misc 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1872 https://github.com/sourcegraph/docs/pull/1872 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +fix-reworded-anchors-search-nav https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-search-nav 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1870 https://github.com/sourcegraph/docs/pull/1870 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +fix-reworded-anchors-self-hosted https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-self-hosted 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1869 https://github.com/sourcegraph/docs/pull/1869 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +fix-toc https://github.com/sourcegraph/docs/tree/fix-toc 2024-01-02 2024-01-02 982 MaedahBatool no 1 1638 22 https://github.com/sourcegraph/docs/pull/22 2024-01-02 MaedahBatool no merged 2024-01-02 DELETE: PR already merged; author left org +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 +fix-typo https://github.com/sourcegraph/docs/tree/fix-typo 2023-12-19 2023-12-19 996 MaedahBatool no 1 1658 13 https://github.com/sourcegraph/docs/pull/13 2023-12-19 MaedahBatool no merged 2023-12-19 DELETE: PR already merged; author left org +fragment-redirects https://github.com/sourcegraph/docs/tree/fragment-redirects 2026-09-08 2026-09-08 3 marcleblanc2 yes 1 30 1879 https://github.com/sourcegraph/docs/pull/1879 2026-09-08 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +lsj/llm-config-providers https://github.com/sourcegraph/docs/tree/lsj/llm-config-providers 2024-09-20 2024-09-20 720 unknown (no GitHub login on commit) 1 956 no PR DELETE?: no PR, idle >180d +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 +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 1445 https://github.com/sourcegraph/docs/pull/1445 2025-11-25 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS STALE WIP: draft PR idle >90d +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +page-views-report https://github.com/sourcegraph/docs/tree/page-views-report 2026-09-09 2026-09-10 1 marcleblanc2 yes 15 28 1890 https://github.com/sourcegraph/docs/pull/1890 2026-09-09 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS WIP: draft PR +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +redirect-probe https://github.com/sourcegraph/docs/tree/redirect-probe 2026-09-09 2026-09-10 1 marcleblanc2 yes 22 28 1897 https://github.com/sourcegraph/docs/pull/1897 2026-09-10 marcleblanc2 yes draft merge=CLEAN checks=SUCCESS WIP: draft PR +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 +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 +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 +rel/changelog/v5.10.0 https://github.com/sourcegraph/docs/tree/rel/changelog/v5.10.0 2024-11-27 2024-11-27 653 DaedalusG yes 3 836 817 https://github.com/sourcegraph/docs/pull/817 2024-11-27 sourcegraph-bot-devx bot merged 2024-11-27 DELETE: PR already merged +rel/changelog/v6.4.2622 https://github.com/sourcegraph/docs/tree/rel/changelog/v6.4.2622 2025-06-11 2025-06-12 456 Chickensoupwithrice no 3 544 1183 https://github.com/sourcegraph/docs/pull/1183 2025-06-11 sourcegraph-bot-devx bot merged 2025-06-12 DELETE: PR already merged; author left org +remove-stale-version-notes https://github.com/sourcegraph/docs/tree/remove-stale-version-notes 2026-09-08 2026-09-08 3 marcleblanc2 yes 1 30 1881 https://github.com/sourcegraph/docs/pull/1881 2026-09-08 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +remove-technical-changelog https://github.com/sourcegraph/docs/tree/remove-technical-changelog 2026-09-09 2026-09-09 2 marcleblanc2 yes 1 28 1888 https://github.com/sourcegraph/docs/pull/1888 2026-09-09 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS WIP: draft PR +restimator https://github.com/sourcegraph/docs/tree/restimator 2024-04-25 2024-04-25 868 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 +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 +rmv-app-docs https://github.com/sourcegraph/docs/tree/rmv-app-docs 2024-01-17 2024-01-17 967 MaedahBatool no 2 1608 41 https://github.com/sourcegraph/docs/pull/41 2024-01-17 MaedahBatool no merged 2024-01-17 DELETE: PR already merged; author left org +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 +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 +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 +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 +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 +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 +sg/cody-rbac https://github.com/sourcegraph/docs/tree/sg/cody-rbac 2024-01-11 2024-01-12 973 unknown (no GitHub login on commit) 10 1624 31 https://github.com/sourcegraph/docs/pull/31 2024-01-11 emidoots yes merged 2024-01-12 DELETE: PR already merged +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 +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 +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 +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 +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 +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 +site/redirects-in-next-config https://github.com/sourcegraph/docs/tree/site/redirects-in-next-config 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 8 1907 https://github.com/sourcegraph/docs/pull/1907 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=FAILURE WIP: draft PR +site/static-md-routes-and-fluid https://github.com/sourcegraph/docs/tree/site/static-md-routes-and-fluid 2026-09-11 2026-09-11 0 marcleblanc2 yes 2 8 1912 https://github.com/sourcegraph/docs/pull/1912 2026-09-11 marcleblanc2 yes open merge=DIRTY checks=SUCCESS ACTIVE: open PR +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 +spellcheck-fix-line-and-patch-comments https://github.com/sourcegraph/docs/tree/spellcheck-fix-line-and-patch-comments 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 1 1919 https://github.com/sourcegraph/docs/pull/1919 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR +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 +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 +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 +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 +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 +sync/2024-03-19/12-58-30 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/12-58-30 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/13-09-04 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-09-04 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/13-23-07 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-23-07 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/13-29-43 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-29-43 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/13-31-15 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-31-15 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/13-47-39 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-47-39 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/14-05-11 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-05-11 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/14-11-32 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-11-32 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/14-20-34 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-20-34 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 172 https://github.com/sourcegraph/docs/pull/172 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-19 DELETE: PR closed without merge +sync/2024-03-19/14-39-45 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-39-45 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d +sync/2024-03-19/14-47-23 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-47-23 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 174 https://github.com/sourcegraph/docs/pull/174 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-20 DELETE: PR closed without merge +sync/2024-03-19/14-57-05 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-57-05 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 175 https://github.com/sourcegraph/docs/pull/175 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-19 DELETE: PR closed without merge +sync/2024-03-19/16-10-34 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/16-10-34 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1380 177 https://github.com/sourcegraph/docs/pull/177 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-20 DELETE: PR closed without 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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +sync/2024-03-20/19-31-16 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/19-31-16 2024-03-20 2024-03-20 904 buildkite-at-sourcegraph bot 1 1355 184 https://github.com/sourcegraph/docs/pull/184 2024-03-20 sourcegraph-buildkite bot closed unmerged 2024-03-20 DELETE: PR closed without 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 +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 +sync/2024-03-21/09-37-43 https://github.com/sourcegraph/docs/tree/sync/2024-03-21/09-37-43 2024-03-21 2024-03-21 904 buildkite-at-sourcegraph bot 1 1355 189 https://github.com/sourcegraph/docs/pull/189 2024-03-21 sourcegraph-buildkite bot closed unmerged 2024-03-21 DELETE: PR closed without 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 +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 +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 +sync/2025-12-17/10-16-00 https://github.com/sourcegraph/docs/tree/sync/2025-12-17/10-16-00 2025-12-17 2025-12-17 268 buildkite-at-sourcegraph bot 1 274 no PR DELETE?: no PR, idle >180d +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 +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 +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 +sync/2025-12-19/21-15-12 https://github.com/sourcegraph/docs/tree/sync/2025-12-19/21-15-12 2025-12-19 2025-12-19 265 buildkite-at-sourcegraph bot 1 267 1498 https://github.com/sourcegraph/docs/pull/1498 2025-12-19 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge +sync/2025-12-19/21-45-23 https://github.com/sourcegraph/docs/tree/sync/2025-12-19/21-45-23 2025-12-19 2025-12-19 265 buildkite-at-sourcegraph bot 1 267 1500 https://github.com/sourcegraph/docs/pull/1500 2025-12-19 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge +sync/2025-12-20/06-14-35 https://github.com/sourcegraph/docs/tree/sync/2025-12-20/06-14-35 2025-12-20 2025-12-20 265 buildkite-at-sourcegraph bot 1 267 1501 https://github.com/sourcegraph/docs/pull/1501 2025-12-20 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge +sync/2025-12-21/06-12-07 https://github.com/sourcegraph/docs/tree/sync/2025-12-21/06-12-07 2025-12-21 2025-12-21 264 buildkite-at-sourcegraph bot 1 267 1502 https://github.com/sourcegraph/docs/pull/1502 2025-12-21 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge +sync/2025-12-22/05-56-57 https://github.com/sourcegraph/docs/tree/sync/2025-12-22/05-56-57 2025-12-22 2025-12-22 263 buildkite-at-sourcegraph bot 1 267 1503 https://github.com/sourcegraph/docs/pull/1503 2025-12-22 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge +sync/2026-01-02/00-01-53 https://github.com/sourcegraph/docs/tree/sync/2026-01-02/00-01-53 2026-01-02 2026-01-02 252 buildkite-at-sourcegraph bot 1 261 1510 https://github.com/sourcegraph/docs/pull/1510 2026-01-02 sourcegraph-buildkite bot closed unmerged 2026-01-05 DELETE: PR closed without merge +sync/2026-01-02/06-09-32 https://github.com/sourcegraph/docs/tree/sync/2026-01-02/06-09-32 2026-01-02 2026-01-02 252 buildkite-at-sourcegraph bot 1 261 1511 https://github.com/sourcegraph/docs/pull/1511 2026-01-02 sourcegraph-buildkite bot closed unmerged 2026-01-05 DELETE: PR closed without merge +sync/2026-01-02/19-32-10 https://github.com/sourcegraph/docs/tree/sync/2026-01-02/19-32-10 2026-01-02 2026-01-02 251 buildkite-at-sourcegraph bot 1 261 1512 https://github.com/sourcegraph/docs/pull/1512 2026-01-02 sourcegraph-buildkite bot closed unmerged 2026-01-05 DELETE: PR closed without merge +sync/2026-01-06/15-24-21 https://github.com/sourcegraph/docs/tree/sync/2026-01-06/15-24-21 2026-01-06 2026-01-06 248 buildkite-at-sourcegraph bot 1 260 1515 https://github.com/sourcegraph/docs/pull/1515 2026-01-06 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-06/18-33-00 https://github.com/sourcegraph/docs/tree/sync/2026-01-06/18-33-00 2026-01-06 2026-01-06 247 buildkite-at-sourcegraph bot 1 260 1516 https://github.com/sourcegraph/docs/pull/1516 2026-01-06 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-10/01-42-56 https://github.com/sourcegraph/docs/tree/sync/2026-01-10/01-42-56 2026-01-10 2026-01-10 244 buildkite-at-sourcegraph bot 1 252 1527 https://github.com/sourcegraph/docs/pull/1527 2026-01-10 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge +sync/2026-01-12/04-26-51 https://github.com/sourcegraph/docs/tree/sync/2026-01-12/04-26-51 2026-01-12 2026-01-12 242 buildkite-at-sourcegraph bot 1 252 1528 https://github.com/sourcegraph/docs/pull/1528 2026-01-12 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge +sync/2026-01-12/22-02-24 https://github.com/sourcegraph/docs/tree/sync/2026-01-12/22-02-24 2026-01-12 2026-01-12 241 buildkite-at-sourcegraph bot 1 252 1532 https://github.com/sourcegraph/docs/pull/1532 2026-01-12 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge +sync/2026-01-13/19-23-52 https://github.com/sourcegraph/docs/tree/sync/2026-01-13/19-23-52 2026-01-13 2026-01-13 240 buildkite-at-sourcegraph bot 1 247 1535 https://github.com/sourcegraph/docs/pull/1535 2026-01-13 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge +sync/2026-01-16/08-35-45 https://github.com/sourcegraph/docs/tree/sync/2026-01-16/08-35-45 2026-01-16 2026-01-16 238 buildkite-at-sourcegraph bot 1 243 1539 https://github.com/sourcegraph/docs/pull/1539 2026-01-16 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge +sync/2026-01-16/12-52-18 https://github.com/sourcegraph/docs/tree/sync/2026-01-16/12-52-18 2026-01-16 2026-01-16 238 buildkite-at-sourcegraph bot 1 243 1540 https://github.com/sourcegraph/docs/pull/1540 2026-01-16 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge +sync/2026-01-19/23-28-46 https://github.com/sourcegraph/docs/tree/sync/2026-01-19/23-28-46 2026-01-19 2026-01-19 234 buildkite-at-sourcegraph bot 1 242 no PR DELETE?: no PR, idle >180d +sync/2026-01-20/15-55-56 https://github.com/sourcegraph/docs/tree/sync/2026-01-20/15-55-56 2026-01-20 2026-01-20 234 buildkite-at-sourcegraph bot 1 239 1545 https://github.com/sourcegraph/docs/pull/1545 2026-01-20 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge +sync/2026-01-21/04-00-44 https://github.com/sourcegraph/docs/tree/sync/2026-01-21/04-00-44 2026-01-21 2026-01-21 233 buildkite-at-sourcegraph bot 1 238 1547 https://github.com/sourcegraph/docs/pull/1547 2026-01-21 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge +sync/2026-01-21/08-46-19 https://github.com/sourcegraph/docs/tree/sync/2026-01-21/08-46-19 2026-01-21 2026-01-21 233 buildkite-at-sourcegraph bot 1 238 1548 https://github.com/sourcegraph/docs/pull/1548 2026-01-21 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge +sync/2026-01-21/20-44-55 https://github.com/sourcegraph/docs/tree/sync/2026-01-21/20-44-55 2026-01-21 2026-01-21 232 buildkite-at-sourcegraph bot 1 235 1552 https://github.com/sourcegraph/docs/pull/1552 2026-01-21 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge +sync/2026-01-21/22-45-17 https://github.com/sourcegraph/docs/tree/sync/2026-01-21/22-45-17 2026-01-21 2026-01-21 232 buildkite-at-sourcegraph bot 1 235 1553 https://github.com/sourcegraph/docs/pull/1553 2026-01-21 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge +sync/2026-01-22/18-31-27 https://github.com/sourcegraph/docs/tree/sync/2026-01-22/18-31-27 2026-01-22 2026-01-22 231 buildkite-at-sourcegraph bot 1 233 1555 https://github.com/sourcegraph/docs/pull/1555 2026-01-22 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-23/11-13-33 https://github.com/sourcegraph/docs/tree/sync/2026-01-23/11-13-33 2026-01-23 2026-01-23 231 buildkite-at-sourcegraph bot 1 233 1557 https://github.com/sourcegraph/docs/pull/1557 2026-01-23 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-23/17-52-42 https://github.com/sourcegraph/docs/tree/sync/2026-01-23/17-52-42 2026-01-23 2026-01-23 230 buildkite-at-sourcegraph bot 1 232 1559 https://github.com/sourcegraph/docs/pull/1559 2026-01-23 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-24/01-40-18 https://github.com/sourcegraph/docs/tree/sync/2026-01-24/01-40-18 2026-01-24 2026-01-24 230 buildkite-at-sourcegraph bot 1 232 1560 https://github.com/sourcegraph/docs/pull/1560 2026-01-24 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-28/14-34-25 https://github.com/sourcegraph/docs/tree/sync/2026-01-28/14-34-25 2026-01-28 2026-01-28 226 buildkite-at-sourcegraph bot 1 226 1569 https://github.com/sourcegraph/docs/pull/1569 2026-01-28 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-28/20-21-16 https://github.com/sourcegraph/docs/tree/sync/2026-01-28/20-21-16 2026-01-28 2026-01-28 225 buildkite-at-sourcegraph bot 1 225 1571 https://github.com/sourcegraph/docs/pull/1571 2026-01-28 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-29/01-24-14 https://github.com/sourcegraph/docs/tree/sync/2026-01-29/01-24-14 2026-01-29 2026-01-29 225 buildkite-at-sourcegraph bot 1 224 1574 https://github.com/sourcegraph/docs/pull/1574 2026-01-29 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-29/07-18-06 https://github.com/sourcegraph/docs/tree/sync/2026-01-29/07-18-06 2026-01-29 2026-01-29 225 buildkite-at-sourcegraph bot 1 224 1575 https://github.com/sourcegraph/docs/pull/1575 2026-01-29 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-29/16-58-24 https://github.com/sourcegraph/docs/tree/sync/2026-01-29/16-58-24 2026-01-29 2026-01-29 225 buildkite-at-sourcegraph bot 1 222 1577 https://github.com/sourcegraph/docs/pull/1577 2026-01-29 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-01-30/23-58-58 https://github.com/sourcegraph/docs/tree/sync/2026-01-30/23-58-58 2026-01-30 2026-01-30 223 buildkite-at-sourcegraph bot 1 221 1579 https://github.com/sourcegraph/docs/pull/1579 2026-01-30 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge +sync/2026-02-03/13-15-40 https://github.com/sourcegraph/docs/tree/sync/2026-02-03/13-15-40 2026-02-03 2026-02-03 220 buildkite-at-sourcegraph bot 1 221 1582 https://github.com/sourcegraph/docs/pull/1582 2026-02-03 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-03/20-07-13 https://github.com/sourcegraph/docs/tree/sync/2026-02-03/20-07-13 2026-02-03 2026-02-03 219 buildkite-at-sourcegraph bot 1 220 1585 https://github.com/sourcegraph/docs/pull/1585 2026-02-03 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-04/00-15-24 https://github.com/sourcegraph/docs/tree/sync/2026-02-04/00-15-24 2026-02-04 2026-02-04 219 buildkite-at-sourcegraph bot 1 220 1586 https://github.com/sourcegraph/docs/pull/1586 2026-02-04 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-05/12-34-05 https://github.com/sourcegraph/docs/tree/sync/2026-02-05/12-34-05 2026-02-05 2026-02-05 218 buildkite-at-sourcegraph bot 1 219 1588 https://github.com/sourcegraph/docs/pull/1588 2026-02-05 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-05/20-10-46 https://github.com/sourcegraph/docs/tree/sync/2026-02-05/20-10-46 2026-02-05 2026-02-05 217 buildkite-at-sourcegraph bot 1 219 1589 https://github.com/sourcegraph/docs/pull/1589 2026-02-05 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-06/19-13-46 https://github.com/sourcegraph/docs/tree/sync/2026-02-06/19-13-46 2026-02-06 2026-02-06 216 buildkite-at-sourcegraph bot 1 218 1591 https://github.com/sourcegraph/docs/pull/1591 2026-02-06 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-07/04-06-31 https://github.com/sourcegraph/docs/tree/sync/2026-02-07/04-06-31 2026-02-07 2026-02-07 216 buildkite-at-sourcegraph bot 1 217 1593 https://github.com/sourcegraph/docs/pull/1593 2026-02-07 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-10/15-36-42 https://github.com/sourcegraph/docs/tree/sync/2026-02-10/15-36-42 2026-02-10 2026-02-10 213 buildkite-at-sourcegraph bot 1 217 1594 https://github.com/sourcegraph/docs/pull/1594 2026-02-10 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-12/22-05-06 https://github.com/sourcegraph/docs/tree/sync/2026-02-12/22-05-06 2026-02-12 2026-02-12 210 buildkite-at-sourcegraph bot 1 211 1603 https://github.com/sourcegraph/docs/pull/1603 2026-02-12 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-12/22-19-40 https://github.com/sourcegraph/docs/tree/sync/2026-02-12/22-19-40 2026-02-12 2026-02-12 210 buildkite-at-sourcegraph bot 1 211 1604 https://github.com/sourcegraph/docs/pull/1604 2026-02-12 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-12/22-21-49 https://github.com/sourcegraph/docs/tree/sync/2026-02-12/22-21-49 2026-02-12 2026-02-12 210 buildkite-at-sourcegraph bot 1 211 1605 https://github.com/sourcegraph/docs/pull/1605 2026-02-12 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-16/17-18-57 https://github.com/sourcegraph/docs/tree/sync/2026-02-16/17-18-57 2026-02-16 2026-02-16 206 buildkite-at-sourcegraph bot 1 211 1607 https://github.com/sourcegraph/docs/pull/1607 2026-02-16 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-17/12-48-47 https://github.com/sourcegraph/docs/tree/sync/2026-02-17/12-48-47 2026-02-17 2026-02-17 206 buildkite-at-sourcegraph bot 1 210 1609 https://github.com/sourcegraph/docs/pull/1609 2026-02-17 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-17/22-53-07 https://github.com/sourcegraph/docs/tree/sync/2026-02-17/22-53-07 2026-02-17 2026-02-17 205 buildkite-at-sourcegraph bot 1 209 1611 https://github.com/sourcegraph/docs/pull/1611 2026-02-17 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-18/11-56-55 https://github.com/sourcegraph/docs/tree/sync/2026-02-18/11-56-55 2026-02-18 2026-02-18 205 buildkite-at-sourcegraph bot 1 209 1613 https://github.com/sourcegraph/docs/pull/1613 2026-02-18 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-18/15-29-41 https://github.com/sourcegraph/docs/tree/sync/2026-02-18/15-29-41 2026-02-18 2026-02-18 205 buildkite-at-sourcegraph bot 1 209 1614 https://github.com/sourcegraph/docs/pull/1614 2026-02-18 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-18/20-30-29 https://github.com/sourcegraph/docs/tree/sync/2026-02-18/20-30-29 2026-02-18 2026-02-18 204 buildkite-at-sourcegraph bot 1 209 1616 https://github.com/sourcegraph/docs/pull/1616 2026-02-18 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-19/00-53-58 https://github.com/sourcegraph/docs/tree/sync/2026-02-19/00-53-58 2026-02-19 2026-02-19 204 buildkite-at-sourcegraph bot 1 208 1618 https://github.com/sourcegraph/docs/pull/1618 2026-02-19 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-20/00-00-07 https://github.com/sourcegraph/docs/tree/sync/2026-02-20/00-00-07 2026-02-20 2026-02-20 203 buildkite-at-sourcegraph bot 1 202 1625 https://github.com/sourcegraph/docs/pull/1625 2026-02-20 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-20/11-52-35 https://github.com/sourcegraph/docs/tree/sync/2026-02-20/11-52-35 2026-02-20 2026-02-20 203 buildkite-at-sourcegraph bot 1 202 1626 https://github.com/sourcegraph/docs/pull/1626 2026-02-20 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-20/17-50-42 https://github.com/sourcegraph/docs/tree/sync/2026-02-20/17-50-42 2026-02-20 2026-02-20 202 buildkite-at-sourcegraph bot 1 201 1627 https://github.com/sourcegraph/docs/pull/1627 2026-02-20 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-20/17-56-14 https://github.com/sourcegraph/docs/tree/sync/2026-02-20/17-56-14 2026-02-20 2026-02-20 202 buildkite-at-sourcegraph bot 1 201 1628 https://github.com/sourcegraph/docs/pull/1628 2026-02-20 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-23/23-41-46 https://github.com/sourcegraph/docs/tree/sync/2026-02-23/23-41-46 2026-02-23 2026-02-23 199 buildkite-at-sourcegraph bot 1 199 1633 https://github.com/sourcegraph/docs/pull/1633 2026-02-23 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-25/03-01-03 https://github.com/sourcegraph/docs/tree/sync/2026-02-25/03-01-03 2026-02-25 2026-02-25 198 buildkite-at-sourcegraph bot 1 195 1637 https://github.com/sourcegraph/docs/pull/1637 2026-02-25 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-25/06-14-58 https://github.com/sourcegraph/docs/tree/sync/2026-02-25/06-14-58 2026-02-25 2026-02-25 198 buildkite-at-sourcegraph bot 1 195 1638 https://github.com/sourcegraph/docs/pull/1638 2026-02-25 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge +sync/2026-02-26/15-30-56 https://github.com/sourcegraph/docs/tree/sync/2026-02-26/15-30-56 2026-02-26 2026-02-26 197 buildkite-at-sourcegraph bot 1 188 1646 https://github.com/sourcegraph/docs/pull/1646 2026-02-26 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge +sync/2026-02-26/17-54-35 https://github.com/sourcegraph/docs/tree/sync/2026-02-26/17-54-35 2026-02-26 2026-02-26 196 buildkite-at-sourcegraph bot 1 187 1648 https://github.com/sourcegraph/docs/pull/1648 2026-02-26 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge +sync/2026-02-26/19-58-59 https://github.com/sourcegraph/docs/tree/sync/2026-02-26/19-58-59 2026-02-26 2026-02-26 196 buildkite-at-sourcegraph bot 1 187 1650 https://github.com/sourcegraph/docs/pull/1650 2026-02-26 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge +sync/2026-02-26/20-11-39 https://github.com/sourcegraph/docs/tree/sync/2026-02-26/20-11-39 2026-02-26 2026-02-26 196 buildkite-at-sourcegraph bot 1 187 1651 https://github.com/sourcegraph/docs/pull/1651 2026-02-26 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge +sync/2026-02-27/11-39-22 https://github.com/sourcegraph/docs/tree/sync/2026-02-27/11-39-22 2026-02-27 2026-02-27 196 buildkite-at-sourcegraph bot 1 186 1653 https://github.com/sourcegraph/docs/pull/1653 2026-02-27 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge +sync/2026-02-27/23-08-45 https://github.com/sourcegraph/docs/tree/sync/2026-02-27/23-08-45 2026-02-27 2026-02-27 195 buildkite-at-sourcegraph bot 1 184 1655 https://github.com/sourcegraph/docs/pull/1655 2026-02-27 sourcegraph-buildkite bot closed unmerged 2026-03-03 DELETE: PR closed without merge +sync/2026-02-28/06-18-18 https://github.com/sourcegraph/docs/tree/sync/2026-02-28/06-18-18 2026-02-28 2026-02-28 195 buildkite-at-sourcegraph bot 1 182 1658 https://github.com/sourcegraph/docs/pull/1658 2026-02-28 sourcegraph-buildkite bot closed unmerged 2026-03-03 DELETE: PR closed without merge +sync/2026-02-28/10-58-50 https://github.com/sourcegraph/docs/tree/sync/2026-02-28/10-58-50 2026-02-28 2026-02-28 195 buildkite-at-sourcegraph bot 1 182 1659 https://github.com/sourcegraph/docs/pull/1659 2026-02-28 sourcegraph-buildkite bot closed unmerged 2026-03-03 DELETE: PR closed without merge +sync/2026-03-02/17-32-45 https://github.com/sourcegraph/docs/tree/sync/2026-03-02/17-32-45 2026-03-02 2026-03-02 192 buildkite-at-sourcegraph bot 1 181 1661 https://github.com/sourcegraph/docs/pull/1661 2026-03-02 sourcegraph-buildkite bot closed unmerged 2026-03-03 DELETE: PR closed without merge +sync/2026-03-03/21-36-55 https://github.com/sourcegraph/docs/tree/sync/2026-03-03/21-36-55 2026-03-03 2026-03-03 191 buildkite-at-sourcegraph bot 1 175 1669 https://github.com/sourcegraph/docs/pull/1669 2026-03-03 sourcegraph-buildkite bot closed unmerged 2026-03-06 DELETE: PR closed without merge +sync/2026-03-04/12-39-24 https://github.com/sourcegraph/docs/tree/sync/2026-03-04/12-39-24 2026-03-04 2026-03-04 191 buildkite-at-sourcegraph bot 1 174 1670 https://github.com/sourcegraph/docs/pull/1670 2026-03-04 sourcegraph-buildkite bot closed unmerged 2026-03-06 DELETE: PR closed without merge +sync/2026-03-04/17-48-51 https://github.com/sourcegraph/docs/tree/sync/2026-03-04/17-48-51 2026-03-04 2026-03-04 190 buildkite-at-sourcegraph bot 1 173 1671 https://github.com/sourcegraph/docs/pull/1671 2026-03-04 sourcegraph-buildkite bot closed unmerged 2026-03-06 DELETE: PR closed without merge +sync/2026-03-06/19-27-49 https://github.com/sourcegraph/docs/tree/sync/2026-03-06/19-27-49 2026-03-06 2026-03-06 188 buildkite-at-sourcegraph bot 1 172 1674 https://github.com/sourcegraph/docs/pull/1674 2026-03-06 sourcegraph-buildkite bot closed unmerged 2026-03-06 DELETE: PR closed without merge +sync/2026-03-09/06-46-00 https://github.com/sourcegraph/docs/tree/sync/2026-03-09/06-46-00 2026-03-09 2026-03-09 186 buildkite-at-sourcegraph bot 1 170 1676 https://github.com/sourcegraph/docs/pull/1676 2026-03-09 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-10/06-14-32 https://github.com/sourcegraph/docs/tree/sync/2026-03-10/06-14-32 2026-03-10 2026-03-10 185 buildkite-at-sourcegraph bot 1 169 1678 https://github.com/sourcegraph/docs/pull/1678 2026-03-10 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-10/08-15-00 https://github.com/sourcegraph/docs/tree/sync/2026-03-10/08-15-00 2026-03-10 2026-03-10 185 buildkite-at-sourcegraph bot 1 169 1679 https://github.com/sourcegraph/docs/pull/1679 2026-03-10 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-12/14-25-01 https://github.com/sourcegraph/docs/tree/sync/2026-03-12/14-25-01 2026-03-12 2026-03-12 183 buildkite-at-sourcegraph bot 1 167 1682 https://github.com/sourcegraph/docs/pull/1682 2026-03-12 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-13/01-54-08 https://github.com/sourcegraph/docs/tree/sync/2026-03-13/01-54-08 2026-03-13 2026-03-13 182 buildkite-at-sourcegraph bot 1 167 1684 https://github.com/sourcegraph/docs/pull/1684 2026-03-13 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-17/23-27-15 https://github.com/sourcegraph/docs/tree/sync/2026-03-17/23-27-15 2026-03-17 2026-03-17 177 buildkite-at-sourcegraph bot 1 164 1692 https://github.com/sourcegraph/docs/pull/1692 2026-03-17 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-18/18-34-53 https://github.com/sourcegraph/docs/tree/sync/2026-03-18/18-34-53 2026-03-18 2026-03-18 176 buildkite-at-sourcegraph bot 1 161 1694 https://github.com/sourcegraph/docs/pull/1694 2026-03-18 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-19/20-14-25 https://github.com/sourcegraph/docs/tree/sync/2026-03-19/20-14-25 2026-03-19 2026-03-19 175 buildkite-at-sourcegraph bot 1 160 1697 https://github.com/sourcegraph/docs/pull/1697 2026-03-19 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-20/03-51-28 https://github.com/sourcegraph/docs/tree/sync/2026-03-20/03-51-28 2026-03-20 2026-03-20 175 buildkite-at-sourcegraph bot 1 159 1701 https://github.com/sourcegraph/docs/pull/1701 2026-03-20 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-20/11-19-49 https://github.com/sourcegraph/docs/tree/sync/2026-03-20/11-19-49 2026-03-20 2026-03-20 175 buildkite-at-sourcegraph bot 1 158 1703 https://github.com/sourcegraph/docs/pull/1703 2026-03-20 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-20/14-39-52 https://github.com/sourcegraph/docs/tree/sync/2026-03-20/14-39-52 2026-03-20 2026-03-20 175 buildkite-at-sourcegraph bot 1 158 1704 https://github.com/sourcegraph/docs/pull/1704 2026-03-20 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-21/04-19-06 https://github.com/sourcegraph/docs/tree/sync/2026-03-21/04-19-06 2026-03-21 2026-03-21 174 buildkite-at-sourcegraph bot 1 156 1706 https://github.com/sourcegraph/docs/pull/1706 2026-03-21 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-21/04-43-17 https://github.com/sourcegraph/docs/tree/sync/2026-03-21/04-43-17 2026-03-21 2026-03-21 174 buildkite-at-sourcegraph bot 1 156 1707 https://github.com/sourcegraph/docs/pull/1707 2026-03-21 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-23/09-04-19 https://github.com/sourcegraph/docs/tree/sync/2026-03-23/09-04-19 2026-03-23 2026-03-23 172 buildkite-at-sourcegraph bot 1 156 1708 https://github.com/sourcegraph/docs/pull/1708 2026-03-23 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-23/10-30-49 https://github.com/sourcegraph/docs/tree/sync/2026-03-23/10-30-49 2026-03-23 2026-03-23 172 buildkite-at-sourcegraph bot 1 156 1709 https://github.com/sourcegraph/docs/pull/1709 2026-03-23 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-23/14-22-06 https://github.com/sourcegraph/docs/tree/sync/2026-03-23/14-22-06 2026-03-23 2026-03-23 172 buildkite-at-sourcegraph bot 1 156 1710 https://github.com/sourcegraph/docs/pull/1710 2026-03-23 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-25/11-35-18 https://github.com/sourcegraph/docs/tree/sync/2026-03-25/11-35-18 2026-03-25 2026-03-25 170 buildkite-at-sourcegraph bot 1 156 1711 https://github.com/sourcegraph/docs/pull/1711 2026-03-25 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-27/11-45-04 https://github.com/sourcegraph/docs/tree/sync/2026-03-27/11-45-04 2026-03-27 2026-03-27 168 buildkite-at-sourcegraph bot 1 152 1717 https://github.com/sourcegraph/docs/pull/1717 2026-03-27 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-27/19-34-44 https://github.com/sourcegraph/docs/tree/sync/2026-03-27/19-34-44 2026-03-27 2026-03-27 167 buildkite-at-sourcegraph bot 1 152 1719 https://github.com/sourcegraph/docs/pull/1719 2026-03-27 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-27/22-54-52 https://github.com/sourcegraph/docs/tree/sync/2026-03-27/22-54-52 2026-03-27 2026-03-27 167 buildkite-at-sourcegraph bot 1 150 1721 https://github.com/sourcegraph/docs/pull/1721 2026-03-27 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge +sync/2026-03-31/22-10-15 https://github.com/sourcegraph/docs/tree/sync/2026-03-31/22-10-15 2026-03-31 2026-03-31 163 buildkite-at-sourcegraph bot 1 142 1729 https://github.com/sourcegraph/docs/pull/1729 2026-03-31 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge +sync/2026-03-31/23-30-31 https://github.com/sourcegraph/docs/tree/sync/2026-03-31/23-30-31 2026-03-31 2026-03-31 163 buildkite-at-sourcegraph bot 1 142 1730 https://github.com/sourcegraph/docs/pull/1730 2026-03-31 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge +sync/2026-04-01/06-02-36 https://github.com/sourcegraph/docs/tree/sync/2026-04-01/06-02-36 2026-04-01 2026-04-01 163 buildkite-at-sourcegraph bot 1 141 1732 https://github.com/sourcegraph/docs/pull/1732 2026-04-01 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge +sync/2026-04-01/08-56-22 https://github.com/sourcegraph/docs/tree/sync/2026-04-01/08-56-22 2026-04-01 2026-04-01 163 buildkite-at-sourcegraph bot 1 141 1733 https://github.com/sourcegraph/docs/pull/1733 2026-04-01 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge +sync/2026-04-01/09-06-03 https://github.com/sourcegraph/docs/tree/sync/2026-04-01/09-06-03 2026-04-01 2026-04-01 163 buildkite-at-sourcegraph bot 1 141 1734 https://github.com/sourcegraph/docs/pull/1734 2026-04-01 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge +sync/2026-04-01/17-01-48 https://github.com/sourcegraph/docs/tree/sync/2026-04-01/17-01-48 2026-04-01 2026-04-01 163 buildkite-at-sourcegraph bot 1 141 1735 https://github.com/sourcegraph/docs/pull/1735 2026-04-01 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge +sync/2026-04-02/02-36-29 https://github.com/sourcegraph/docs/tree/sync/2026-04-02/02-36-29 2026-04-02 2026-04-02 162 buildkite-at-sourcegraph bot 1 141 1736 https://github.com/sourcegraph/docs/pull/1736 2026-04-02 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge +test-check-links-breaks-link https://github.com/sourcegraph/docs/tree/test-check-links-breaks-link 2026-09-10 2026-09-10 1 marcleblanc2 yes 23 24 1900 https://github.com/sourcegraph/docs/pull/1900 2026-09-10 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +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 +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 +test-pr-checks-broken-2 https://github.com/sourcegraph/docs/tree/test-pr-checks-broken-2 2026-09-11 2026-09-11 0 marcleblanc2 yes 12 1 1920 https://github.com/sourcegraph/docs/pull/1920 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR +test-pr-checks-remediated-2 https://github.com/sourcegraph/docs/tree/test-pr-checks-remediated-2 2026-09-11 2026-09-11 0 marcleblanc2 yes 14 1 1921 https://github.com/sourcegraph/docs/pull/1921 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR +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 +todo/vercel-audit https://github.com/sourcegraph/docs/tree/todo/vercel-audit 2026-09-11 2026-09-11 0 marcleblanc2 yes 5 8 1905 https://github.com/sourcegraph/docs/pull/1905 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR +tr/change-cloud-instance-page-title https://github.com/sourcegraph/docs/tree/tr/change-cloud-instance-page-title 2025-12-09 2025-12-09 275 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 +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 +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 +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 +update-admin https://github.com/sourcegraph/docs/tree/update-admin 2024-01-18 2024-01-18 966 MaedahBatool no 1 1604 44 https://github.com/sourcegraph/docs/pull/44 2024-01-18 MaedahBatool no merged 2024-01-18 DELETE: PR already merged; author left org +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 +update-readme-preview https://github.com/sourcegraph/docs/tree/update-readme-preview 2024-01-18 2024-01-18 966 MaedahBatool no 1 1605 43 https://github.com/sourcegraph/docs/pull/43 2024-01-18 MaedahBatool no merged 2024-01-18 DELETE: PR already merged; author left org +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 +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 +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 +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 +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 +wb/bazel-rust-faq-entry https://github.com/sourcegraph/docs/tree/wb/bazel-rust-faq-entry 2023-12-28 2024-01-03 982 burmudar yes 3 1641 18 https://github.com/sourcegraph/docs/pull/18 2023-12-28 burmudar yes merged 2024-01-04 DELETE: PR already merged +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=UNKNOWN checks=SUCCESS REVIEW: open PR idle 30-90d +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 +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 +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 +wb/use-pnpm https://github.com/sourcegraph/docs/tree/wb/use-pnpm 2023-12-28 2023-12-28 988 burmudar yes 2 1641 19 https://github.com/sourcegraph/docs/pull/19 2023-12-28 burmudar yes merged 2024-01-02 DELETE: PR already merged +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 +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 +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 +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 +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 +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 +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 +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 +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=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 167 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 78 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 From 0c5006208640316ac2d1a5ee4785022ed57f9b46 Mon Sep 17 00:00:00 2001 From: Marc LeBlanc <7050295+marcleblanc2@users.noreply.github.com> Date: Fri, 11 Sep 2026 11:13:38 -0600 Subject: [PATCH 2/2] reports/branches: Refresh after deleting 113 sync bot branches and 22 merged branches --- reports/branches/branches-and-prs.tsv | 150 ++------------------------ 1 file changed, 8 insertions(+), 142 deletions(-) diff --git a/reports/branches/branches-and-prs.tsv b/reports/branches/branches-and-prs.tsv index 384c7c814..de6261884 100644 --- a/reports/branches/branches-and-prs.tsv +++ b/reports/branches/branches-and-prs.tsv @@ -1,44 +1,34 @@ 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 -MaedahBatool-patch-1 https://github.com/sourcegraph/docs/tree/MaedahBatool-patch-1 2024-06-25 2024-06-25 807 MaedahBatool no 1 1112 449 https://github.com/sourcegraph/docs/pull/449 2024-06-21 MaedahBatool no merged 2024-06-21 DELETE: PR already merged; author left org 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 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 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 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 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 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 -add-pricing-in-nav https://github.com/sourcegraph/docs/tree/add-pricing-in-nav 2024-01-04 2024-01-04 980 MaedahBatool no 1 1635 24 https://github.com/sourcegraph/docs/pull/24 2024-01-04 MaedahBatool no merged 2024-01-04 DELETE: PR already merged; author left org 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 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 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 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 -amenne-branch1-vscode https://github.com/sourcegraph/docs/tree/amenne-branch1-vscode 2024-01-05 2024-01-08 976 MaedahBatool no 3 1631 25 https://github.com/sourcegraph/docs/pull/25 2024-01-05 amenne yes merged 2024-01-08 DELETE: PR already merged; author left org 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 -aramaraju-update-Enterprise-models https://github.com/sourcegraph/docs/tree/aramaraju-update-Enterprise-models 2024-06-12 2024-06-12 820 aramaraju no 1 1146 419 https://github.com/sourcegraph/docs/pull/419 2024-06-12 aramaraju no merged 2024-06-12 DELETE: PR already merged; author left org 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 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 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 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 -broken-links https://github.com/sourcegraph/docs/tree/broken-links 2023-12-15 2023-12-15 1000 MaedahBatool no 1 1659 12 https://github.com/sourcegraph/docs/pull/12 2023-12-15 MaedahBatool no merged 2023-12-18 DELETE: PR already merged; author left org build/lint-warnings-and-caniuse https://github.com/sourcegraph/docs/tree/build/lint-warnings-and-caniuse 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 4 1909 https://github.com/sourcegraph/docs/pull/1909 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS ACTIVE: open PR -changelog https://github.com/sourcegraph/docs/tree/changelog 2024-01-22 2024-01-22 962 MaedahBatool no 3 1596 50 https://github.com/sourcegraph/docs/pull/50 2024-01-22 MaedahBatool no merged 2024-01-22 DELETE: PR already merged; author left org check-links/upstream-generated-files https://github.com/sourcegraph/docs/tree/check-links/upstream-generated-files 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 8 1910 https://github.com/sourcegraph/docs/pull/1910 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR 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 check-redirects https://github.com/sourcegraph/docs/tree/check-redirects 2026-09-11 2026-09-11 0 marcleblanc2 yes 3 4 1880 https://github.com/sourcegraph/docs/pull/1880 2026-09-08 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR 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 ci/vercel-build-failure-report https://github.com/sourcegraph/docs/tree/ci/vercel-build-failure-report 2026-09-11 2026-09-11 0 marcleblanc2 yes 4 1 1918 https://github.com/sourcegraph/docs/pull/1918 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR 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 -cloud-docs https://github.com/sourcegraph/docs/tree/cloud-docs 2024-01-15 2024-01-15 969 MaedahBatool no 1 1619 38 https://github.com/sourcegraph/docs/pull/38 2024-01-15 MaedahBatool no merged 2024-01-15 DELETE: PR already merged; author left org -cloud-trial-updates https://github.com/sourcegraph/docs/tree/cloud-trial-updates 2024-01-19 2024-01-20 965 amenne yes 3 1602 46 https://github.com/sourcegraph/docs/pull/46 2024-01-19 amenne yes merged 2024-01-22 DELETE: PR already merged 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 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 -cody-auth-third-party https://github.com/sourcegraph/docs/tree/cody-auth-third-party 2024-01-18 2024-01-18 966 MaedahBatool no 1 1603 45 https://github.com/sourcegraph/docs/pull/45 2024-01-18 MaedahBatool no merged 2024-01-18 DELETE: PR already merged; author left org 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 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 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 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 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 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 -dax/update_docs https://github.com/sourcegraph/docs/tree/dax/update_docs 2024-02-13 2024-02-13 940 daxmc99 no 1 1491 98 https://github.com/sourcegraph/docs/pull/98 2024-02-13 daxmc99 no merged 2024-02-13 DELETE: PR already merged; author left org 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 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 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 @@ -62,17 +52,13 @@ es/cs https://github.com/sourcegraph/docs/tree/es/cs 2026-04-26 2026-04-26 138 e 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 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 fix-dead-section-links https://github.com/sourcegraph/docs/tree/fix-dead-section-links 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1865 https://github.com/sourcegraph/docs/pull/1865 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR -fix-discord-link https://github.com/sourcegraph/docs/tree/fix-discord-link 2024-01-08 2024-01-08 976 MaedahBatool no 1 1632 26 https://github.com/sourcegraph/docs/pull/26 2024-01-08 MaedahBatool no merged 2024-01-08 DELETE: PR already merged; author left org -fix-intro https://github.com/sourcegraph/docs/tree/fix-intro 2024-01-19 2024-01-19 965 MaedahBatool no 1 1602 47 https://github.com/sourcegraph/docs/pull/47 2024-01-19 MaedahBatool no merged 2024-01-19 DELETE: PR already merged; author left org fix-moved-page-links https://github.com/sourcegraph/docs/tree/fix-moved-page-links 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1866 https://github.com/sourcegraph/docs/pull/1866 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR fix-reworded-anchors-admin https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-admin 2026-09-07 2026-09-07 3 marcleblanc2 yes 2 30 1868 https://github.com/sourcegraph/docs/pull/1868 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR fix-reworded-anchors-cody-batch-insights https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-cody-batch-insights 2026-09-07 2026-09-07 3 marcleblanc2 yes 2 30 1871 https://github.com/sourcegraph/docs/pull/1871 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR fix-reworded-anchors-misc https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-misc 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1872 https://github.com/sourcegraph/docs/pull/1872 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR fix-reworded-anchors-search-nav https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-search-nav 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1870 https://github.com/sourcegraph/docs/pull/1870 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR fix-reworded-anchors-self-hosted https://github.com/sourcegraph/docs/tree/fix-reworded-anchors-self-hosted 2026-09-07 2026-09-07 3 marcleblanc2 yes 1 30 1869 https://github.com/sourcegraph/docs/pull/1869 2026-09-07 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR -fix-toc https://github.com/sourcegraph/docs/tree/fix-toc 2024-01-02 2024-01-02 982 MaedahBatool no 1 1638 22 https://github.com/sourcegraph/docs/pull/22 2024-01-02 MaedahBatool no merged 2024-01-02 DELETE: PR already merged; author left org 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 -fix-typo https://github.com/sourcegraph/docs/tree/fix-typo 2023-12-19 2023-12-19 996 MaedahBatool no 1 1658 13 https://github.com/sourcegraph/docs/pull/13 2023-12-19 MaedahBatool no merged 2023-12-19 DELETE: PR already merged; author left org fragment-redirects https://github.com/sourcegraph/docs/tree/fragment-redirects 2026-09-08 2026-09-08 3 marcleblanc2 yes 1 30 1879 https://github.com/sourcegraph/docs/pull/1879 2026-09-08 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR 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 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 @@ -120,7 +106,7 @@ olafurpg/api-component https://github.com/sourcegraph/docs/tree/olafurpg/api-com 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 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 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 -page-views-report https://github.com/sourcegraph/docs/tree/page-views-report 2026-09-09 2026-09-10 1 marcleblanc2 yes 15 28 1890 https://github.com/sourcegraph/docs/pull/1890 2026-09-09 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS WIP: draft PR +page-views-report https://github.com/sourcegraph/docs/tree/page-views-report 2026-09-09 2026-09-11 0 marcleblanc2 yes 16 28 1890 https://github.com/sourcegraph/docs/pull/1890 2026-09-09 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=PENDING WIP: draft PR 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 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 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 @@ -132,24 +118,21 @@ prompting-guide https://github.com/sourcegraph/docs/tree/prompting-guide 2024-05 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 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 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 -redirect-probe https://github.com/sourcegraph/docs/tree/redirect-probe 2026-09-09 2026-09-10 1 marcleblanc2 yes 22 28 1897 https://github.com/sourcegraph/docs/pull/1897 2026-09-10 marcleblanc2 yes draft merge=CLEAN checks=SUCCESS WIP: draft PR +redirect-probe https://github.com/sourcegraph/docs/tree/redirect-probe 2026-09-09 2026-09-10 1 marcleblanc2 yes 22 28 1897 https://github.com/sourcegraph/docs/pull/1897 2026-09-10 marcleblanc2 yes draft merge=UNKNOWN checks=SUCCESS WIP: draft PR 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 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 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 -rel/changelog/v5.10.0 https://github.com/sourcegraph/docs/tree/rel/changelog/v5.10.0 2024-11-27 2024-11-27 653 DaedalusG yes 3 836 817 https://github.com/sourcegraph/docs/pull/817 2024-11-27 sourcegraph-bot-devx bot merged 2024-11-27 DELETE: PR already merged -rel/changelog/v6.4.2622 https://github.com/sourcegraph/docs/tree/rel/changelog/v6.4.2622 2025-06-11 2025-06-12 456 Chickensoupwithrice no 3 544 1183 https://github.com/sourcegraph/docs/pull/1183 2025-06-11 sourcegraph-bot-devx bot merged 2025-06-12 DELETE: PR already merged; author left org remove-stale-version-notes https://github.com/sourcegraph/docs/tree/remove-stale-version-notes 2026-09-08 2026-09-08 3 marcleblanc2 yes 1 30 1881 https://github.com/sourcegraph/docs/pull/1881 2026-09-08 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS WIP: draft PR remove-technical-changelog https://github.com/sourcegraph/docs/tree/remove-technical-changelog 2026-09-09 2026-09-09 2 marcleblanc2 yes 1 28 1888 https://github.com/sourcegraph/docs/pull/1888 2026-09-09 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=SUCCESS WIP: draft PR +reports/branch-audit https://github.com/sourcegraph/docs/tree/reports/branch-audit 2026-09-11 2026-09-11 0 marcleblanc2 yes 1 1 1923 https://github.com/sourcegraph/docs/pull/1923 2026-09-11 marcleblanc2 yes open review=REVIEW_REQUIRED merge=BEHIND checks=SUCCESS ACTIVE: open PR restimator https://github.com/sourcegraph/docs/tree/restimator 2024-04-25 2024-04-25 868 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 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 -rmv-app-docs https://github.com/sourcegraph/docs/tree/rmv-app-docs 2024-01-17 2024-01-17 967 MaedahBatool no 2 1608 41 https://github.com/sourcegraph/docs/pull/41 2024-01-17 MaedahBatool no merged 2024-01-17 DELETE: PR already merged; author left org 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 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 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 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 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 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 -sg/cody-rbac https://github.com/sourcegraph/docs/tree/sg/cody-rbac 2024-01-11 2024-01-12 973 unknown (no GitHub login on commit) 10 1624 31 https://github.com/sourcegraph/docs/pull/31 2024-01-11 emidoots yes merged 2024-01-12 DELETE: PR already merged 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 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 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 @@ -165,19 +148,6 @@ sync/2024-03-19/11-37-43 https://github.com/sourcegraph/docs/tree/sync/2024-03-1 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 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 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 -sync/2024-03-19/12-58-30 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/12-58-30 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/13-09-04 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-09-04 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/13-23-07 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-23-07 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/13-29-43 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-29-43 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/13-31-15 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-31-15 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/13-47-39 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/13-47-39 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/14-05-11 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-05-11 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/14-11-32 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-11-32 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/14-20-34 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-20-34 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 172 https://github.com/sourcegraph/docs/pull/172 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-19 DELETE: PR closed without merge -sync/2024-03-19/14-39-45 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-39-45 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 no PR DELETE?: no PR, idle >180d -sync/2024-03-19/14-47-23 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-47-23 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 174 https://github.com/sourcegraph/docs/pull/174 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-20 DELETE: PR closed without merge -sync/2024-03-19/14-57-05 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/14-57-05 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1385 175 https://github.com/sourcegraph/docs/pull/175 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-19 DELETE: PR closed without merge -sync/2024-03-19/16-10-34 https://github.com/sourcegraph/docs/tree/sync/2024-03-19/16-10-34 2024-03-19 2024-03-19 906 buildkite-at-sourcegraph bot 1 1380 177 https://github.com/sourcegraph/docs/pull/177 2024-03-19 sourcegraph-buildkite bot closed unmerged 2024-03-20 DELETE: PR closed without 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 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 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 @@ -192,115 +162,15 @@ sync/2024-03-20/16-26-16 https://github.com/sourcegraph/docs/tree/sync/2024-03-2 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 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 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 -sync/2024-03-20/19-31-16 https://github.com/sourcegraph/docs/tree/sync/2024-03-20/19-31-16 2024-03-20 2024-03-20 904 buildkite-at-sourcegraph bot 1 1355 184 https://github.com/sourcegraph/docs/pull/184 2024-03-20 sourcegraph-buildkite bot closed unmerged 2024-03-20 DELETE: PR closed without 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 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 -sync/2024-03-21/09-37-43 https://github.com/sourcegraph/docs/tree/sync/2024-03-21/09-37-43 2024-03-21 2024-03-21 904 buildkite-at-sourcegraph bot 1 1355 189 https://github.com/sourcegraph/docs/pull/189 2024-03-21 sourcegraph-buildkite bot closed unmerged 2024-03-21 DELETE: PR closed without 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 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 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 -sync/2025-12-17/10-16-00 https://github.com/sourcegraph/docs/tree/sync/2025-12-17/10-16-00 2025-12-17 2025-12-17 268 buildkite-at-sourcegraph bot 1 274 no PR DELETE?: no PR, idle >180d 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 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 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 -sync/2025-12-19/21-15-12 https://github.com/sourcegraph/docs/tree/sync/2025-12-19/21-15-12 2025-12-19 2025-12-19 265 buildkite-at-sourcegraph bot 1 267 1498 https://github.com/sourcegraph/docs/pull/1498 2025-12-19 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge -sync/2025-12-19/21-45-23 https://github.com/sourcegraph/docs/tree/sync/2025-12-19/21-45-23 2025-12-19 2025-12-19 265 buildkite-at-sourcegraph bot 1 267 1500 https://github.com/sourcegraph/docs/pull/1500 2025-12-19 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge -sync/2025-12-20/06-14-35 https://github.com/sourcegraph/docs/tree/sync/2025-12-20/06-14-35 2025-12-20 2025-12-20 265 buildkite-at-sourcegraph bot 1 267 1501 https://github.com/sourcegraph/docs/pull/1501 2025-12-20 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge -sync/2025-12-21/06-12-07 https://github.com/sourcegraph/docs/tree/sync/2025-12-21/06-12-07 2025-12-21 2025-12-21 264 buildkite-at-sourcegraph bot 1 267 1502 https://github.com/sourcegraph/docs/pull/1502 2025-12-21 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge -sync/2025-12-22/05-56-57 https://github.com/sourcegraph/docs/tree/sync/2025-12-22/05-56-57 2025-12-22 2025-12-22 263 buildkite-at-sourcegraph bot 1 267 1503 https://github.com/sourcegraph/docs/pull/1503 2025-12-22 sourcegraph-buildkite bot closed unmerged 2025-12-24 DELETE: PR closed without merge -sync/2026-01-02/00-01-53 https://github.com/sourcegraph/docs/tree/sync/2026-01-02/00-01-53 2026-01-02 2026-01-02 252 buildkite-at-sourcegraph bot 1 261 1510 https://github.com/sourcegraph/docs/pull/1510 2026-01-02 sourcegraph-buildkite bot closed unmerged 2026-01-05 DELETE: PR closed without merge -sync/2026-01-02/06-09-32 https://github.com/sourcegraph/docs/tree/sync/2026-01-02/06-09-32 2026-01-02 2026-01-02 252 buildkite-at-sourcegraph bot 1 261 1511 https://github.com/sourcegraph/docs/pull/1511 2026-01-02 sourcegraph-buildkite bot closed unmerged 2026-01-05 DELETE: PR closed without merge -sync/2026-01-02/19-32-10 https://github.com/sourcegraph/docs/tree/sync/2026-01-02/19-32-10 2026-01-02 2026-01-02 251 buildkite-at-sourcegraph bot 1 261 1512 https://github.com/sourcegraph/docs/pull/1512 2026-01-02 sourcegraph-buildkite bot closed unmerged 2026-01-05 DELETE: PR closed without merge -sync/2026-01-06/15-24-21 https://github.com/sourcegraph/docs/tree/sync/2026-01-06/15-24-21 2026-01-06 2026-01-06 248 buildkite-at-sourcegraph bot 1 260 1515 https://github.com/sourcegraph/docs/pull/1515 2026-01-06 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-06/18-33-00 https://github.com/sourcegraph/docs/tree/sync/2026-01-06/18-33-00 2026-01-06 2026-01-06 247 buildkite-at-sourcegraph bot 1 260 1516 https://github.com/sourcegraph/docs/pull/1516 2026-01-06 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-10/01-42-56 https://github.com/sourcegraph/docs/tree/sync/2026-01-10/01-42-56 2026-01-10 2026-01-10 244 buildkite-at-sourcegraph bot 1 252 1527 https://github.com/sourcegraph/docs/pull/1527 2026-01-10 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge -sync/2026-01-12/04-26-51 https://github.com/sourcegraph/docs/tree/sync/2026-01-12/04-26-51 2026-01-12 2026-01-12 242 buildkite-at-sourcegraph bot 1 252 1528 https://github.com/sourcegraph/docs/pull/1528 2026-01-12 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge -sync/2026-01-12/22-02-24 https://github.com/sourcegraph/docs/tree/sync/2026-01-12/22-02-24 2026-01-12 2026-01-12 241 buildkite-at-sourcegraph bot 1 252 1532 https://github.com/sourcegraph/docs/pull/1532 2026-01-12 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge -sync/2026-01-13/19-23-52 https://github.com/sourcegraph/docs/tree/sync/2026-01-13/19-23-52 2026-01-13 2026-01-13 240 buildkite-at-sourcegraph bot 1 247 1535 https://github.com/sourcegraph/docs/pull/1535 2026-01-13 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge -sync/2026-01-16/08-35-45 https://github.com/sourcegraph/docs/tree/sync/2026-01-16/08-35-45 2026-01-16 2026-01-16 238 buildkite-at-sourcegraph bot 1 243 1539 https://github.com/sourcegraph/docs/pull/1539 2026-01-16 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge -sync/2026-01-16/12-52-18 https://github.com/sourcegraph/docs/tree/sync/2026-01-16/12-52-18 2026-01-16 2026-01-16 238 buildkite-at-sourcegraph bot 1 243 1540 https://github.com/sourcegraph/docs/pull/1540 2026-01-16 sourcegraph-buildkite bot closed unmerged 2026-01-19 DELETE: PR closed without merge -sync/2026-01-19/23-28-46 https://github.com/sourcegraph/docs/tree/sync/2026-01-19/23-28-46 2026-01-19 2026-01-19 234 buildkite-at-sourcegraph bot 1 242 no PR DELETE?: no PR, idle >180d -sync/2026-01-20/15-55-56 https://github.com/sourcegraph/docs/tree/sync/2026-01-20/15-55-56 2026-01-20 2026-01-20 234 buildkite-at-sourcegraph bot 1 239 1545 https://github.com/sourcegraph/docs/pull/1545 2026-01-20 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge -sync/2026-01-21/04-00-44 https://github.com/sourcegraph/docs/tree/sync/2026-01-21/04-00-44 2026-01-21 2026-01-21 233 buildkite-at-sourcegraph bot 1 238 1547 https://github.com/sourcegraph/docs/pull/1547 2026-01-21 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge -sync/2026-01-21/08-46-19 https://github.com/sourcegraph/docs/tree/sync/2026-01-21/08-46-19 2026-01-21 2026-01-21 233 buildkite-at-sourcegraph bot 1 238 1548 https://github.com/sourcegraph/docs/pull/1548 2026-01-21 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge -sync/2026-01-21/20-44-55 https://github.com/sourcegraph/docs/tree/sync/2026-01-21/20-44-55 2026-01-21 2026-01-21 232 buildkite-at-sourcegraph bot 1 235 1552 https://github.com/sourcegraph/docs/pull/1552 2026-01-21 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge -sync/2026-01-21/22-45-17 https://github.com/sourcegraph/docs/tree/sync/2026-01-21/22-45-17 2026-01-21 2026-01-21 232 buildkite-at-sourcegraph bot 1 235 1553 https://github.com/sourcegraph/docs/pull/1553 2026-01-21 sourcegraph-buildkite bot closed unmerged 2026-01-22 DELETE: PR closed without merge -sync/2026-01-22/18-31-27 https://github.com/sourcegraph/docs/tree/sync/2026-01-22/18-31-27 2026-01-22 2026-01-22 231 buildkite-at-sourcegraph bot 1 233 1555 https://github.com/sourcegraph/docs/pull/1555 2026-01-22 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-23/11-13-33 https://github.com/sourcegraph/docs/tree/sync/2026-01-23/11-13-33 2026-01-23 2026-01-23 231 buildkite-at-sourcegraph bot 1 233 1557 https://github.com/sourcegraph/docs/pull/1557 2026-01-23 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-23/17-52-42 https://github.com/sourcegraph/docs/tree/sync/2026-01-23/17-52-42 2026-01-23 2026-01-23 230 buildkite-at-sourcegraph bot 1 232 1559 https://github.com/sourcegraph/docs/pull/1559 2026-01-23 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-24/01-40-18 https://github.com/sourcegraph/docs/tree/sync/2026-01-24/01-40-18 2026-01-24 2026-01-24 230 buildkite-at-sourcegraph bot 1 232 1560 https://github.com/sourcegraph/docs/pull/1560 2026-01-24 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-28/14-34-25 https://github.com/sourcegraph/docs/tree/sync/2026-01-28/14-34-25 2026-01-28 2026-01-28 226 buildkite-at-sourcegraph bot 1 226 1569 https://github.com/sourcegraph/docs/pull/1569 2026-01-28 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-28/20-21-16 https://github.com/sourcegraph/docs/tree/sync/2026-01-28/20-21-16 2026-01-28 2026-01-28 225 buildkite-at-sourcegraph bot 1 225 1571 https://github.com/sourcegraph/docs/pull/1571 2026-01-28 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-29/01-24-14 https://github.com/sourcegraph/docs/tree/sync/2026-01-29/01-24-14 2026-01-29 2026-01-29 225 buildkite-at-sourcegraph bot 1 224 1574 https://github.com/sourcegraph/docs/pull/1574 2026-01-29 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-29/07-18-06 https://github.com/sourcegraph/docs/tree/sync/2026-01-29/07-18-06 2026-01-29 2026-01-29 225 buildkite-at-sourcegraph bot 1 224 1575 https://github.com/sourcegraph/docs/pull/1575 2026-01-29 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-29/16-58-24 https://github.com/sourcegraph/docs/tree/sync/2026-01-29/16-58-24 2026-01-29 2026-01-29 225 buildkite-at-sourcegraph bot 1 222 1577 https://github.com/sourcegraph/docs/pull/1577 2026-01-29 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-01-30/23-58-58 https://github.com/sourcegraph/docs/tree/sync/2026-01-30/23-58-58 2026-01-30 2026-01-30 223 buildkite-at-sourcegraph bot 1 221 1579 https://github.com/sourcegraph/docs/pull/1579 2026-01-30 sourcegraph-buildkite bot closed unmerged 2026-02-24 DELETE: PR closed without merge -sync/2026-02-03/13-15-40 https://github.com/sourcegraph/docs/tree/sync/2026-02-03/13-15-40 2026-02-03 2026-02-03 220 buildkite-at-sourcegraph bot 1 221 1582 https://github.com/sourcegraph/docs/pull/1582 2026-02-03 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-03/20-07-13 https://github.com/sourcegraph/docs/tree/sync/2026-02-03/20-07-13 2026-02-03 2026-02-03 219 buildkite-at-sourcegraph bot 1 220 1585 https://github.com/sourcegraph/docs/pull/1585 2026-02-03 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-04/00-15-24 https://github.com/sourcegraph/docs/tree/sync/2026-02-04/00-15-24 2026-02-04 2026-02-04 219 buildkite-at-sourcegraph bot 1 220 1586 https://github.com/sourcegraph/docs/pull/1586 2026-02-04 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-05/12-34-05 https://github.com/sourcegraph/docs/tree/sync/2026-02-05/12-34-05 2026-02-05 2026-02-05 218 buildkite-at-sourcegraph bot 1 219 1588 https://github.com/sourcegraph/docs/pull/1588 2026-02-05 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-05/20-10-46 https://github.com/sourcegraph/docs/tree/sync/2026-02-05/20-10-46 2026-02-05 2026-02-05 217 buildkite-at-sourcegraph bot 1 219 1589 https://github.com/sourcegraph/docs/pull/1589 2026-02-05 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-06/19-13-46 https://github.com/sourcegraph/docs/tree/sync/2026-02-06/19-13-46 2026-02-06 2026-02-06 216 buildkite-at-sourcegraph bot 1 218 1591 https://github.com/sourcegraph/docs/pull/1591 2026-02-06 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-07/04-06-31 https://github.com/sourcegraph/docs/tree/sync/2026-02-07/04-06-31 2026-02-07 2026-02-07 216 buildkite-at-sourcegraph bot 1 217 1593 https://github.com/sourcegraph/docs/pull/1593 2026-02-07 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-10/15-36-42 https://github.com/sourcegraph/docs/tree/sync/2026-02-10/15-36-42 2026-02-10 2026-02-10 213 buildkite-at-sourcegraph bot 1 217 1594 https://github.com/sourcegraph/docs/pull/1594 2026-02-10 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-12/22-05-06 https://github.com/sourcegraph/docs/tree/sync/2026-02-12/22-05-06 2026-02-12 2026-02-12 210 buildkite-at-sourcegraph bot 1 211 1603 https://github.com/sourcegraph/docs/pull/1603 2026-02-12 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-12/22-19-40 https://github.com/sourcegraph/docs/tree/sync/2026-02-12/22-19-40 2026-02-12 2026-02-12 210 buildkite-at-sourcegraph bot 1 211 1604 https://github.com/sourcegraph/docs/pull/1604 2026-02-12 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-12/22-21-49 https://github.com/sourcegraph/docs/tree/sync/2026-02-12/22-21-49 2026-02-12 2026-02-12 210 buildkite-at-sourcegraph bot 1 211 1605 https://github.com/sourcegraph/docs/pull/1605 2026-02-12 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-16/17-18-57 https://github.com/sourcegraph/docs/tree/sync/2026-02-16/17-18-57 2026-02-16 2026-02-16 206 buildkite-at-sourcegraph bot 1 211 1607 https://github.com/sourcegraph/docs/pull/1607 2026-02-16 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-17/12-48-47 https://github.com/sourcegraph/docs/tree/sync/2026-02-17/12-48-47 2026-02-17 2026-02-17 206 buildkite-at-sourcegraph bot 1 210 1609 https://github.com/sourcegraph/docs/pull/1609 2026-02-17 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-17/22-53-07 https://github.com/sourcegraph/docs/tree/sync/2026-02-17/22-53-07 2026-02-17 2026-02-17 205 buildkite-at-sourcegraph bot 1 209 1611 https://github.com/sourcegraph/docs/pull/1611 2026-02-17 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-18/11-56-55 https://github.com/sourcegraph/docs/tree/sync/2026-02-18/11-56-55 2026-02-18 2026-02-18 205 buildkite-at-sourcegraph bot 1 209 1613 https://github.com/sourcegraph/docs/pull/1613 2026-02-18 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-18/15-29-41 https://github.com/sourcegraph/docs/tree/sync/2026-02-18/15-29-41 2026-02-18 2026-02-18 205 buildkite-at-sourcegraph bot 1 209 1614 https://github.com/sourcegraph/docs/pull/1614 2026-02-18 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-18/20-30-29 https://github.com/sourcegraph/docs/tree/sync/2026-02-18/20-30-29 2026-02-18 2026-02-18 204 buildkite-at-sourcegraph bot 1 209 1616 https://github.com/sourcegraph/docs/pull/1616 2026-02-18 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-19/00-53-58 https://github.com/sourcegraph/docs/tree/sync/2026-02-19/00-53-58 2026-02-19 2026-02-19 204 buildkite-at-sourcegraph bot 1 208 1618 https://github.com/sourcegraph/docs/pull/1618 2026-02-19 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-20/00-00-07 https://github.com/sourcegraph/docs/tree/sync/2026-02-20/00-00-07 2026-02-20 2026-02-20 203 buildkite-at-sourcegraph bot 1 202 1625 https://github.com/sourcegraph/docs/pull/1625 2026-02-20 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-20/11-52-35 https://github.com/sourcegraph/docs/tree/sync/2026-02-20/11-52-35 2026-02-20 2026-02-20 203 buildkite-at-sourcegraph bot 1 202 1626 https://github.com/sourcegraph/docs/pull/1626 2026-02-20 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-20/17-50-42 https://github.com/sourcegraph/docs/tree/sync/2026-02-20/17-50-42 2026-02-20 2026-02-20 202 buildkite-at-sourcegraph bot 1 201 1627 https://github.com/sourcegraph/docs/pull/1627 2026-02-20 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-20/17-56-14 https://github.com/sourcegraph/docs/tree/sync/2026-02-20/17-56-14 2026-02-20 2026-02-20 202 buildkite-at-sourcegraph bot 1 201 1628 https://github.com/sourcegraph/docs/pull/1628 2026-02-20 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-23/23-41-46 https://github.com/sourcegraph/docs/tree/sync/2026-02-23/23-41-46 2026-02-23 2026-02-23 199 buildkite-at-sourcegraph bot 1 199 1633 https://github.com/sourcegraph/docs/pull/1633 2026-02-23 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-25/03-01-03 https://github.com/sourcegraph/docs/tree/sync/2026-02-25/03-01-03 2026-02-25 2026-02-25 198 buildkite-at-sourcegraph bot 1 195 1637 https://github.com/sourcegraph/docs/pull/1637 2026-02-25 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-25/06-14-58 https://github.com/sourcegraph/docs/tree/sync/2026-02-25/06-14-58 2026-02-25 2026-02-25 198 buildkite-at-sourcegraph bot 1 195 1638 https://github.com/sourcegraph/docs/pull/1638 2026-02-25 sourcegraph-buildkite bot closed unmerged 2026-02-25 DELETE: PR closed without merge -sync/2026-02-26/15-30-56 https://github.com/sourcegraph/docs/tree/sync/2026-02-26/15-30-56 2026-02-26 2026-02-26 197 buildkite-at-sourcegraph bot 1 188 1646 https://github.com/sourcegraph/docs/pull/1646 2026-02-26 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge -sync/2026-02-26/17-54-35 https://github.com/sourcegraph/docs/tree/sync/2026-02-26/17-54-35 2026-02-26 2026-02-26 196 buildkite-at-sourcegraph bot 1 187 1648 https://github.com/sourcegraph/docs/pull/1648 2026-02-26 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge -sync/2026-02-26/19-58-59 https://github.com/sourcegraph/docs/tree/sync/2026-02-26/19-58-59 2026-02-26 2026-02-26 196 buildkite-at-sourcegraph bot 1 187 1650 https://github.com/sourcegraph/docs/pull/1650 2026-02-26 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge -sync/2026-02-26/20-11-39 https://github.com/sourcegraph/docs/tree/sync/2026-02-26/20-11-39 2026-02-26 2026-02-26 196 buildkite-at-sourcegraph bot 1 187 1651 https://github.com/sourcegraph/docs/pull/1651 2026-02-26 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge -sync/2026-02-27/11-39-22 https://github.com/sourcegraph/docs/tree/sync/2026-02-27/11-39-22 2026-02-27 2026-02-27 196 buildkite-at-sourcegraph bot 1 186 1653 https://github.com/sourcegraph/docs/pull/1653 2026-02-27 sourcegraph-buildkite bot closed unmerged 2026-02-27 DELETE: PR closed without merge -sync/2026-02-27/23-08-45 https://github.com/sourcegraph/docs/tree/sync/2026-02-27/23-08-45 2026-02-27 2026-02-27 195 buildkite-at-sourcegraph bot 1 184 1655 https://github.com/sourcegraph/docs/pull/1655 2026-02-27 sourcegraph-buildkite bot closed unmerged 2026-03-03 DELETE: PR closed without merge -sync/2026-02-28/06-18-18 https://github.com/sourcegraph/docs/tree/sync/2026-02-28/06-18-18 2026-02-28 2026-02-28 195 buildkite-at-sourcegraph bot 1 182 1658 https://github.com/sourcegraph/docs/pull/1658 2026-02-28 sourcegraph-buildkite bot closed unmerged 2026-03-03 DELETE: PR closed without merge -sync/2026-02-28/10-58-50 https://github.com/sourcegraph/docs/tree/sync/2026-02-28/10-58-50 2026-02-28 2026-02-28 195 buildkite-at-sourcegraph bot 1 182 1659 https://github.com/sourcegraph/docs/pull/1659 2026-02-28 sourcegraph-buildkite bot closed unmerged 2026-03-03 DELETE: PR closed without merge -sync/2026-03-02/17-32-45 https://github.com/sourcegraph/docs/tree/sync/2026-03-02/17-32-45 2026-03-02 2026-03-02 192 buildkite-at-sourcegraph bot 1 181 1661 https://github.com/sourcegraph/docs/pull/1661 2026-03-02 sourcegraph-buildkite bot closed unmerged 2026-03-03 DELETE: PR closed without merge -sync/2026-03-03/21-36-55 https://github.com/sourcegraph/docs/tree/sync/2026-03-03/21-36-55 2026-03-03 2026-03-03 191 buildkite-at-sourcegraph bot 1 175 1669 https://github.com/sourcegraph/docs/pull/1669 2026-03-03 sourcegraph-buildkite bot closed unmerged 2026-03-06 DELETE: PR closed without merge -sync/2026-03-04/12-39-24 https://github.com/sourcegraph/docs/tree/sync/2026-03-04/12-39-24 2026-03-04 2026-03-04 191 buildkite-at-sourcegraph bot 1 174 1670 https://github.com/sourcegraph/docs/pull/1670 2026-03-04 sourcegraph-buildkite bot closed unmerged 2026-03-06 DELETE: PR closed without merge -sync/2026-03-04/17-48-51 https://github.com/sourcegraph/docs/tree/sync/2026-03-04/17-48-51 2026-03-04 2026-03-04 190 buildkite-at-sourcegraph bot 1 173 1671 https://github.com/sourcegraph/docs/pull/1671 2026-03-04 sourcegraph-buildkite bot closed unmerged 2026-03-06 DELETE: PR closed without merge -sync/2026-03-06/19-27-49 https://github.com/sourcegraph/docs/tree/sync/2026-03-06/19-27-49 2026-03-06 2026-03-06 188 buildkite-at-sourcegraph bot 1 172 1674 https://github.com/sourcegraph/docs/pull/1674 2026-03-06 sourcegraph-buildkite bot closed unmerged 2026-03-06 DELETE: PR closed without merge -sync/2026-03-09/06-46-00 https://github.com/sourcegraph/docs/tree/sync/2026-03-09/06-46-00 2026-03-09 2026-03-09 186 buildkite-at-sourcegraph bot 1 170 1676 https://github.com/sourcegraph/docs/pull/1676 2026-03-09 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-10/06-14-32 https://github.com/sourcegraph/docs/tree/sync/2026-03-10/06-14-32 2026-03-10 2026-03-10 185 buildkite-at-sourcegraph bot 1 169 1678 https://github.com/sourcegraph/docs/pull/1678 2026-03-10 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-10/08-15-00 https://github.com/sourcegraph/docs/tree/sync/2026-03-10/08-15-00 2026-03-10 2026-03-10 185 buildkite-at-sourcegraph bot 1 169 1679 https://github.com/sourcegraph/docs/pull/1679 2026-03-10 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-12/14-25-01 https://github.com/sourcegraph/docs/tree/sync/2026-03-12/14-25-01 2026-03-12 2026-03-12 183 buildkite-at-sourcegraph bot 1 167 1682 https://github.com/sourcegraph/docs/pull/1682 2026-03-12 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-13/01-54-08 https://github.com/sourcegraph/docs/tree/sync/2026-03-13/01-54-08 2026-03-13 2026-03-13 182 buildkite-at-sourcegraph bot 1 167 1684 https://github.com/sourcegraph/docs/pull/1684 2026-03-13 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-17/23-27-15 https://github.com/sourcegraph/docs/tree/sync/2026-03-17/23-27-15 2026-03-17 2026-03-17 177 buildkite-at-sourcegraph bot 1 164 1692 https://github.com/sourcegraph/docs/pull/1692 2026-03-17 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-18/18-34-53 https://github.com/sourcegraph/docs/tree/sync/2026-03-18/18-34-53 2026-03-18 2026-03-18 176 buildkite-at-sourcegraph bot 1 161 1694 https://github.com/sourcegraph/docs/pull/1694 2026-03-18 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-19/20-14-25 https://github.com/sourcegraph/docs/tree/sync/2026-03-19/20-14-25 2026-03-19 2026-03-19 175 buildkite-at-sourcegraph bot 1 160 1697 https://github.com/sourcegraph/docs/pull/1697 2026-03-19 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-20/03-51-28 https://github.com/sourcegraph/docs/tree/sync/2026-03-20/03-51-28 2026-03-20 2026-03-20 175 buildkite-at-sourcegraph bot 1 159 1701 https://github.com/sourcegraph/docs/pull/1701 2026-03-20 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-20/11-19-49 https://github.com/sourcegraph/docs/tree/sync/2026-03-20/11-19-49 2026-03-20 2026-03-20 175 buildkite-at-sourcegraph bot 1 158 1703 https://github.com/sourcegraph/docs/pull/1703 2026-03-20 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-20/14-39-52 https://github.com/sourcegraph/docs/tree/sync/2026-03-20/14-39-52 2026-03-20 2026-03-20 175 buildkite-at-sourcegraph bot 1 158 1704 https://github.com/sourcegraph/docs/pull/1704 2026-03-20 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-21/04-19-06 https://github.com/sourcegraph/docs/tree/sync/2026-03-21/04-19-06 2026-03-21 2026-03-21 174 buildkite-at-sourcegraph bot 1 156 1706 https://github.com/sourcegraph/docs/pull/1706 2026-03-21 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-21/04-43-17 https://github.com/sourcegraph/docs/tree/sync/2026-03-21/04-43-17 2026-03-21 2026-03-21 174 buildkite-at-sourcegraph bot 1 156 1707 https://github.com/sourcegraph/docs/pull/1707 2026-03-21 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-23/09-04-19 https://github.com/sourcegraph/docs/tree/sync/2026-03-23/09-04-19 2026-03-23 2026-03-23 172 buildkite-at-sourcegraph bot 1 156 1708 https://github.com/sourcegraph/docs/pull/1708 2026-03-23 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-23/10-30-49 https://github.com/sourcegraph/docs/tree/sync/2026-03-23/10-30-49 2026-03-23 2026-03-23 172 buildkite-at-sourcegraph bot 1 156 1709 https://github.com/sourcegraph/docs/pull/1709 2026-03-23 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-23/14-22-06 https://github.com/sourcegraph/docs/tree/sync/2026-03-23/14-22-06 2026-03-23 2026-03-23 172 buildkite-at-sourcegraph bot 1 156 1710 https://github.com/sourcegraph/docs/pull/1710 2026-03-23 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-25/11-35-18 https://github.com/sourcegraph/docs/tree/sync/2026-03-25/11-35-18 2026-03-25 2026-03-25 170 buildkite-at-sourcegraph bot 1 156 1711 https://github.com/sourcegraph/docs/pull/1711 2026-03-25 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-27/11-45-04 https://github.com/sourcegraph/docs/tree/sync/2026-03-27/11-45-04 2026-03-27 2026-03-27 168 buildkite-at-sourcegraph bot 1 152 1717 https://github.com/sourcegraph/docs/pull/1717 2026-03-27 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-27/19-34-44 https://github.com/sourcegraph/docs/tree/sync/2026-03-27/19-34-44 2026-03-27 2026-03-27 167 buildkite-at-sourcegraph bot 1 152 1719 https://github.com/sourcegraph/docs/pull/1719 2026-03-27 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-27/22-54-52 https://github.com/sourcegraph/docs/tree/sync/2026-03-27/22-54-52 2026-03-27 2026-03-27 167 buildkite-at-sourcegraph bot 1 150 1721 https://github.com/sourcegraph/docs/pull/1721 2026-03-27 sourcegraph-buildkite bot closed unmerged 2026-03-30 DELETE: PR closed without merge -sync/2026-03-31/22-10-15 https://github.com/sourcegraph/docs/tree/sync/2026-03-31/22-10-15 2026-03-31 2026-03-31 163 buildkite-at-sourcegraph bot 1 142 1729 https://github.com/sourcegraph/docs/pull/1729 2026-03-31 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge -sync/2026-03-31/23-30-31 https://github.com/sourcegraph/docs/tree/sync/2026-03-31/23-30-31 2026-03-31 2026-03-31 163 buildkite-at-sourcegraph bot 1 142 1730 https://github.com/sourcegraph/docs/pull/1730 2026-03-31 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge -sync/2026-04-01/06-02-36 https://github.com/sourcegraph/docs/tree/sync/2026-04-01/06-02-36 2026-04-01 2026-04-01 163 buildkite-at-sourcegraph bot 1 141 1732 https://github.com/sourcegraph/docs/pull/1732 2026-04-01 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge -sync/2026-04-01/08-56-22 https://github.com/sourcegraph/docs/tree/sync/2026-04-01/08-56-22 2026-04-01 2026-04-01 163 buildkite-at-sourcegraph bot 1 141 1733 https://github.com/sourcegraph/docs/pull/1733 2026-04-01 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge -sync/2026-04-01/09-06-03 https://github.com/sourcegraph/docs/tree/sync/2026-04-01/09-06-03 2026-04-01 2026-04-01 163 buildkite-at-sourcegraph bot 1 141 1734 https://github.com/sourcegraph/docs/pull/1734 2026-04-01 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge -sync/2026-04-01/17-01-48 https://github.com/sourcegraph/docs/tree/sync/2026-04-01/17-01-48 2026-04-01 2026-04-01 163 buildkite-at-sourcegraph bot 1 141 1735 https://github.com/sourcegraph/docs/pull/1735 2026-04-01 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge -sync/2026-04-02/02-36-29 https://github.com/sourcegraph/docs/tree/sync/2026-04-02/02-36-29 2026-04-02 2026-04-02 162 buildkite-at-sourcegraph bot 1 141 1736 https://github.com/sourcegraph/docs/pull/1736 2026-04-02 sourcegraph-buildkite bot closed unmerged 2026-04-02 DELETE: PR closed without merge -test-check-links-breaks-link https://github.com/sourcegraph/docs/tree/test-check-links-breaks-link 2026-09-10 2026-09-10 1 marcleblanc2 yes 23 24 1900 https://github.com/sourcegraph/docs/pull/1900 2026-09-10 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=UNKNOWN checks=FAILURE WIP: draft PR +test-check-links-breaks-link https://github.com/sourcegraph/docs/tree/test-check-links-breaks-link 2026-09-10 2026-09-10 1 marcleblanc2 yes 23 24 1900 https://github.com/sourcegraph/docs/pull/1900 2026-09-10 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=DIRTY checks=FAILURE WIP: draft PR 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 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 test-pr-checks-broken-2 https://github.com/sourcegraph/docs/tree/test-pr-checks-broken-2 2026-09-11 2026-09-11 0 marcleblanc2 yes 12 1 1920 https://github.com/sourcegraph/docs/pull/1920 2026-09-11 marcleblanc2 yes draft review=REVIEW_REQUIRED merge=BEHIND checks=FAILURE WIP: draft PR @@ -311,20 +181,16 @@ tr/change-cloud-instance-page-title https://github.com/sourcegraph/docs/tree/tr/ 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 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 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 -update-admin https://github.com/sourcegraph/docs/tree/update-admin 2024-01-18 2024-01-18 966 MaedahBatool no 1 1604 44 https://github.com/sourcegraph/docs/pull/44 2024-01-18 MaedahBatool no merged 2024-01-18 DELETE: PR already merged; author left org 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 -update-readme-preview https://github.com/sourcegraph/docs/tree/update-readme-preview 2024-01-18 2024-01-18 966 MaedahBatool no 1 1605 43 https://github.com/sourcegraph/docs/pull/43 2024-01-18 MaedahBatool no merged 2024-01-18 DELETE: PR already merged; author left org 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 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 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 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 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 -wb/bazel-rust-faq-entry https://github.com/sourcegraph/docs/tree/wb/bazel-rust-faq-entry 2023-12-28 2024-01-03 982 burmudar yes 3 1641 18 https://github.com/sourcegraph/docs/pull/18 2023-12-28 burmudar yes merged 2024-01-04 DELETE: PR already merged -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=UNKNOWN checks=SUCCESS REVIEW: open PR idle 30-90d +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 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 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 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 -wb/use-pnpm https://github.com/sourcegraph/docs/tree/wb/use-pnpm 2023-12-28 2023-12-28 988 burmudar yes 2 1641 19 https://github.com/sourcegraph/docs/pull/19 2023-12-28 burmudar yes merged 2024-01-02 DELETE: PR already merged 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 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 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 @@ -333,6 +199,6 @@ will/rules_apko_updates https://github.com/sourcegraph/docs/tree/will/rules_apko 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 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 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 -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=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 167 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 78 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 +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 +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 +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