Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
78 changes: 78 additions & 0 deletions .github/workflows/triage-backfill.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# .github/workflows/triage-backfill.yml
# One-time / occasional drain of the ACCRETED backlog — runs the SAME shared
# analysis (scripts/triage/analyze.js) over EXISTING open issues. Manual only,
# DRY-RUN by default (preview in the job summary before anything applies), capped.
name: triage / backfill (manual)
on:
workflow_dispatch:
inputs:
max_issues:
description: "Max issues to process this run (oldest first)"
type: number
default: 50
dry_run:
description: "Preview only (no labels/comments applied)"
type: boolean
default: true
permissions:
issues: write

Check failure

Code scanning / zizmor

overly broad permissions: issues: write is overly broad at the workflow level Error

overly broad permissions: issues: write is overly broad at the workflow level

Check notice

Code scanning / zizmor

permissions without explanatory comments: needs an explanatory comment Note

permissions without explanatory comments: needs an explanatory comment
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
concurrency:
group: triage-backfill
cancel-in-progress: false
jobs:
backfill:

Check notice

Code scanning / zizmor

workflow or action definition without a name: this job Note

workflow or action definition without a name: this job
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
with:
persist-credentials: false # only reads scripts/triage/analyze.js; no git ops
- uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

Check warning

Code scanning / zizmor

secrets referenced without a dedicated environment: secret is accessed outside of a dedicated environment Warning

secrets referenced without a dedicated environment: secret is accessed outside of a dedicated environment
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
with:
script: |
const analyzeIssue = require(`${process.env.GITHUB_WORKSPACE}/scripts/triage/analyze.js`);
const { owner, repo } = context.repo;
const dryRun = ${{ inputs.dry_run }};

Check notice

Code scanning / zizmor

code injection via template expansion: may expand into attacker-controllable code Note

code injection via template expansion: may expand into attacker-controllable code
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
const max = Number("${{ inputs.max_issues }}") || 50;

Check notice

Code scanning / zizmor

code injection via template expansion: may expand into attacker-controllable code Note

code injection via template expansion: may expand into attacker-controllable code
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
if (!process.env.ANTHROPIC_API_KEY) { core.warning("ANTHROPIC_API_KEY not set — nothing to do."); return; }
const sleep = (ms) => new Promise(r => setTimeout(r, ms));

const labels = await github.paginate(github.rest.issues.listLabelsForRepo, { owner, repo, per_page: 100 });
const valid = new Set(labels.map(l => l.name));
const APPLYABLE = new Set(["bug","enhancement","documentation","question","Integration","SDK","framework","Agent Framework"]); // content labels only; see triage-on-open.yml for rationale
const labelList = labels.map(l => `- ${l.name}${l.description ? `: ${l.description}` : ""}`).join("\n");

const all = await github.paginate(github.rest.issues.listForRepo, { owner, repo, state: "open", sort: "created", direction: "asc", per_page: 100 });
const issues = all.filter(i => !i.pull_request).slice(0, max);
const rows = [];

for (const issue of issues) {
let r;
try { r = await analyzeIssue({ github, owner, repo, issue, labelList }); }
catch (e) { core.warning(`#${issue.number}: ${e.message}`); continue; }
await sleep(2500); // analyze() does a search — stay under the 30/min search limit
if (r.skipped) continue;

const toApply = r.labels.filter(l => valid.has(l) && APPLYABLE.has(l) && !(issue.labels || []).some(x => (x.name || x) === l));
const willLabel = r.labelConfidence >= 0.75 && toApply.length;
const dup = (r.duplicateOf && r.dupConfidence >= 0.8 && r.candidates.includes(r.duplicateOf) && valid.has("duplicate")) ? r.duplicateOf : null;
if (!willLabel && !dup) continue;

rows.push({ n: issue.number, labels: willLabel ? toApply.join(",") : "", dup: dup ? `#${dup}` : "" });
if (!dryRun) {
if (willLabel) await github.rest.issues.addLabels({ owner, repo, issue_number: issue.number, labels: toApply });
if (dup) {
await github.rest.issues.addLabels({ owner, repo, issue_number: issue.number, labels: ["duplicate"] });
await github.rest.issues.createComment({ owner, repo, issue_number: issue.number, body: `Possible duplicate of #${dup} — a maintainer will confirm; say so if it's not and we'll remove the label. (Automated triage flag.)` });
}
}
}

core.summary
.addHeading(`Triage backfill — ${dryRun ? "DRY RUN (nothing applied)" : "APPLIED"} · ${issues.length} scanned · ${rows.length} actionable`)
.addTable([
[{ data: "Issue", header: true }, { data: "Labels", header: true }, { data: "Dup-of", header: true }],
...rows.map(r => [`#${r.n}`, r.labels || "—", r.dup || "—"]),
])
.write();
56 changes: 56 additions & 0 deletions .github/workflows/triage-on-open.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# .github/workflows/triage-on-open.yml
# Consolidated on-open triage: label + dedup-flag in ONE combined LLM call
# (shared logic in scripts/triage/analyze.js). Advisory / high-confidence,
# reopen-friendly; flags duplicates but never auto-closes. No key -> clean skip.
name: triage / on-open
on:
issues:
types: [opened]
permissions:
issues: write

Check failure

Code scanning / zizmor

overly broad permissions: issues: write is overly broad at the workflow level Error

overly broad permissions: issues: write is overly broad at the workflow level

Check notice

Code scanning / zizmor

permissions without explanatory comments: needs an explanatory comment Note

permissions without explanatory comments: needs an explanatory comment
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
concurrency:
group: triage-on-open-${{ github.event.issue.number }}
cancel-in-progress: true
jobs:
triage:

Check notice

Code scanning / zizmor

workflow or action definition without a name: this job Note

workflow or action definition without a name: this job
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4.4.0
with:
persist-credentials: false # only reads scripts/triage/analyze.js; no git ops
- uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7.1.0
env:
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}

Check warning

Code scanning / zizmor

secrets referenced without a dedicated environment: secret is accessed outside of a dedicated environment Warning

secrets referenced without a dedicated environment: secret is accessed outside of a dedicated environment
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
with:
script: |
const analyzeIssue = require(`${process.env.GITHUB_WORKSPACE}/scripts/triage/analyze.js`);
const { owner, repo } = context.repo;
const issue = context.payload.issue;

const labels = await github.paginate(github.rest.issues.listLabelsForRepo, { owner, repo, per_page: 100 });
const valid = new Set(labels.map(l => l.name));
// Allow-list (default-deny): the classifier may apply ONLY these — content
// labels that exist in this repo. Excludes disposition/curation labels
// (proposal, Roadmap, good first issue, help wanted, release, invalid,
// wontfix…) — those are human calls. "enhancement" is this repo's canonical
// feature type (heavily used); "Feature Request" is a rarely-used synonym we
// deliberately omit to avoid the classifier waffling between the two.
const APPLYABLE = new Set(["bug","enhancement","documentation","question","Integration","SDK","framework","Agent Framework"]);
const labelList = labels.map(l => `- ${l.name}${l.description ? `: ${l.description}` : ""}`).join("\n");

const r = await analyzeIssue({ github, owner, repo, issue, labelList });
if (r.skipped) { core.info(`skipped: ${r.skipped}`); return; }

const toApply = r.labels.filter(l => valid.has(l) && APPLYABLE.has(l));
if (r.labelConfidence >= 0.75 && toApply.length) {
await github.rest.issues.addLabels({ owner, repo, issue_number: issue.number, labels: toApply });
core.info(`labeled: ${toApply.join(", ")} (conf ${r.labelConfidence})`);
}
if (r.duplicateOf && r.dupConfidence >= 0.8 && r.candidates.includes(r.duplicateOf) && valid.has("duplicate")) {
await github.rest.issues.addLabels({ owner, repo, issue_number: issue.number, labels: ["duplicate"] });
await github.rest.issues.createComment({
owner, repo, issue_number: issue.number,
body: `Possible duplicate of #${r.duplicateOf} — a maintainer will confirm; if it isn't, just say so and we'll remove the label. (Automated triage flag; nothing closes automatically.)`,
});
core.info(`flagged possible dup of #${r.duplicateOf} (conf ${r.dupConfidence})`);
}
38 changes: 38 additions & 0 deletions .github/workflows/triage-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# .github/workflows/triage-stale.yml
# Stop-the-bleeding MVP #1 — drain the "awaiting info" dead weight.
# Deterministic (no LLM). Scoped to needs-info only, so it never nukes real issues.
name: triage / stale
on:
schedule:
- cron: "0 9 * * *" # daily 09:00 UTC
workflow_dispatch:
permissions:
issues: write

Check failure

Code scanning / zizmor

overly broad permissions: issues: write is overly broad at the workflow level Error

overly broad permissions: issues: write is overly broad at the workflow level

Check notice

Code scanning / zizmor

permissions without explanatory comments: needs an explanatory comment Note

permissions without explanatory comments: needs an explanatory comment
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
concurrency:
group: triage-stale
cancel-in-progress: false
jobs:
stale:

Check notice

Code scanning / zizmor

workflow or action definition without a name: this job Note

workflow or action definition without a name: this job
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
runs-on: ubuntu-latest
steps:
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
with:
# MVP: only auto-progress issues we explicitly asked info on and got silence.
only-labels: "needs-info"
days-before-stale: 14
days-before-close: 7
stale-issue-label: "stale"
stale-issue-message: >
Marking stale — this has been awaiting the requested info for 14 days
and will close in 7 if there's no update. Just comment to keep it open,
and reopen anytime if it closes.
close-issue-message: >
Closing due to inactivity while awaiting more information. Please reopen
or comment with the details and we'll pick it back up.
remove-stale-when-updated: true
exempt-issue-labels: "Roadmap,proposal"
# PRs are a later arc — do not touch them here.
days-before-pr-stale: -1
days-before-pr-close: -1
# Be gentle on rate limits.
operations-per-run: 60
46 changes: 46 additions & 0 deletions scripts/triage/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Issue triage automation

Stop-the-bleeding automation for incoming issues. Three workflows, one shared
analysis module. Everything is **advisory / high-confidence / reopen-friendly** —
nothing closes an issue on an LLM's say-so.

| Workflow | Trigger | LLM? | What it does |
| --------------------- | ---------------------------- | ---- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `triage-stale.yml` | daily cron | no | Marks `needs-info` issues stale after 14d of silence, closes 7d later. Scoped to `needs-info` only, so it never touches active issues. Exempts `Roadmap,proposal`. PRs untouched. |
| `triage-on-open.yml` | `issues: opened` | yes | One combined classify + dedup pass. Applies allow-listed labels (conf ≥ 0.75) and flags likely duplicates with an advisory comment (conf ≥ 0.8). Never closes. |
| `triage-backfill.yml` | manual (`workflow_dispatch`) | yes | Same analysis over the existing open backlog. **Dry-run by default** — previews in the job summary; only applies when you uncheck dry-run. Capped by `max_issues`. |

`analyze.js` is the single source of truth for the LLM logic (search for
candidates → one combined Anthropic call → return proposals). Both the on-open
and backfill workflows call it, so policy and safety controls live in one place.

## Setup

1. **`ANTHROPIC_API_KEY`** repo secret — required only by the two LLM workflows.
Without it they clean-skip (log and exit, no failures). `triage-stale` needs
nothing. Recommend a workspace-scoped key with a monthly spend cap.
2. **Curate the label allow-list.** The classifier may apply _only_ the labels in
`APPLYABLE` (top of `triage-on-open.yml` / `triage-backfill.yml`). It's
default-deny and currently holds the repo's real content labels only —
`bug, enhancement, documentation, question, Integration, SDK, framework, Agent Framework`.
`enhancement` is this repo's canonical feature type; the rarely-used `Feature Request`
synonym is deliberately omitted. Curation/disposition labels (`proposal`, `Roadmap`,
`good first issue`, `help wanted`, `release`, `invalid`, `wontfix`…) are excluded —
those are human calls. Adjust per repo.
3. **Create a `needs-info` label** (this repo doesn't have one yet). Until it exists
and gets applied, `triage-stale` is a clean no-op — it only acts on `needs-info`.
4. **First run:** dispatch `triage-backfill` with dry-run **on** and a small
`max_issues` to eyeball the proposals before letting it apply anything.

## Safety model

- **Constrained action space** — the LLM never posts free text. It returns
structured JSON; the workflow applies validated labels and templated comments.
- **Default-deny labels** — only allow-listed labels can be applied.
- **Confidence gates** — labels ≥ 0.75, dedup ≥ 0.8; dedup also requires the
target to be one of the candidates we actually searched.
- **Flag, never close** — duplicates get a label + a "a maintainer will confirm"
comment. Humans close.
- **Spam/low-signal gate** — already-flagged or empty-body-from-outsider issues
skip the LLM call entirely (cost guard).
- **Pinned actions** — checkout / github-script / stale are SHA-pinned.
103 changes: 103 additions & 0 deletions scripts/triage/analyze.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
// scripts/triage/analyze.js
// Shared issue-analysis used by triage-on-open + triage-backfill (single source of truth).
// Does ONE GitHub search + ONE combined Anthropic call; returns proposals only —
// no labels/comments are applied here (the caller applies per its policy).
// No npm deps: uses the passed `github` octokit + global fetch. Needs ANTHROPIC_API_KEY in env.

const MODEL = "claude-haiku-4-5-20251001";

async function ask(prompt, maxTokens) {
const res = await fetch("https://api.anthropic.com/v1/messages", {
method: "POST",
headers: {
"content-type": "application/json",
"x-api-key": process.env.ANTHROPIC_API_KEY,
"anthropic-version": "2023-06-01",
},
body: JSON.stringify({
model: MODEL,
max_tokens: maxTokens,
messages: [{ role: "user", content: prompt }],
}),
});
if (!res.ok) throw new Error(`Anthropic ${res.status}`);
const data = await res.json();
const text = data.content?.[0]?.text || "{}";
try {
return JSON.parse(text.match(/\{[\s\S]*\}/)?.[0] ?? "{}");
} catch {
return {};
}
}

// Cheap spam / low-signal gate — avoids spending an LLM call on obvious junk (cost guard).
function lowSignal(issue) {
const labels = (issue.labels || []).map((l) => l.name || l);
if (labels.some((n) => n === "spam" || n === "invalid"))
return "already-flagged";
const assoc = issue.author_association || "NONE";
const outsider = assoc === "NONE" || assoc === "FIRST_TIMER";
const bodyLen = (issue.body || "").replace(/\s/g, "").length;
if (outsider && bodyLen < 15) return "empty-body-from-outsider";
return null;
}

module.exports = async function analyzeIssue({
github,
owner,
repo,
issue,
labelList,
}) {
if (!process.env.ANTHROPIC_API_KEY) return { skipped: "no-api-key" };
const skip = lowSignal(issue);
if (skip) return { skipped: skip };

// Candidate duplicates — lexical recall (upgrade to an embeddings index later if needed).
const kw = (issue.title || "")
.replace(/[^\w\s]/g, " ")
.split(/\s+/)
.filter(Boolean)
.slice(0, 8)
.join(" ");
let candidates = [];
try {
const found = await github.rest.search.issuesAndPullRequests({
q: `repo:${owner}/${repo} is:issue ${kw}`,
per_page: 12,
});
candidates = found.data.items
.filter((i) => i.number !== issue.number && !i.pull_request)
.slice(0, 8);
} catch (_) {
/* search rate-limited/failed — proceed label-only */
}

// ONE combined call: classification + dedup together.
const candList = candidates.length
? candidates.map((c) => `#${c.number} [${c.state}]: ${c.title}`).join("\n")
: "(none)";
const out = await ask(
[
"Triage this GitHub issue. Do BOTH tasks and return a single JSON object.",
"1) LABELS — choose best-fit labels from ONLY this list (canonical types: bug, feature request, question, documentation; plus a clear area label if one applies). Never invent labels; empty array if unsure.",
labelList,
"2) DUPLICATE — is the issue a duplicate of one candidate (same underlying problem, not merely similar area)?",
`Candidates:\n${candList}`,
"",
`Title: ${issue.title}`,
`Body:\n${(issue.body || "").slice(0, 4000)}`,
"",
'Respond with ONLY JSON: {"labels": string[], "labelConfidence": number 0-1, "duplicateOf": number|null, "dupConfidence": number 0-1}',
].join("\n"),
400,
);

return {
labels: Array.isArray(out.labels) ? out.labels : [],
labelConfidence: Number(out.labelConfidence ?? 0),
duplicateOf: typeof out.duplicateOf === "number" ? out.duplicateOf : null,
dupConfidence: Number(out.dupConfidence ?? 0),
candidates: candidates.map((c) => c.number),
};
};
Loading