summaryrefslogtreecommitdiffhomepage
path: root/.opencode
diff options
context:
space:
mode:
authorAiden Cline <[email protected]>2026-02-20 13:56:29 -0600
committerGitHub <[email protected]>2026-02-20 13:56:29 -0600
commit950df3de19e63e17040035ad02dec7ed680b04ac (patch)
tree2dda1af028a59f607aa3265ead27a250b0a18b91 /.opencode
parent1d9f05e4f5cdda1d1aa9675444ee83c57ae9951e (diff)
downloadopencode-950df3de19e63e17040035ad02dec7ed680b04ac.tar.gz
opencode-950df3de19e63e17040035ad02dec7ed680b04ac.zip
ci: temporarily disable assigning of issues to rekram1-node (#14486)
Diffstat (limited to '.opencode')
-rw-r--r--.opencode/tool/github-triage.ts20
-rw-r--r--.opencode/tool/github-triage.txt2
2 files changed, 15 insertions, 7 deletions
diff --git a/.opencode/tool/github-triage.ts b/.opencode/tool/github-triage.ts
index ed80f49d5..8ad0212ad 100644
--- a/.opencode/tool/github-triage.ts
+++ b/.opencode/tool/github-triage.ts
@@ -5,8 +5,16 @@ import DESCRIPTION from "./github-triage.txt"
const TEAM = {
desktop: ["adamdotdevin", "iamdavidhill", "Brendonovich", "nexxeln"],
zen: ["fwang", "MrMushrooooom"],
- tui: ["thdxr", "kommander", "rekram1-node"],
- core: ["thdxr", "rekram1-node", "jlongster"],
+ tui: [
+ "thdxr",
+ "kommander",
+ // "rekram1-node" (on vacation)
+ ],
+ core: [
+ "thdxr",
+ // "rekram1-node", (on vacation)
+ "jlongster",
+ ],
docs: ["R44VC0RP"],
windows: ["Hona"],
} as const
@@ -42,10 +50,7 @@ async function githubFetch(endpoint: string, options: RequestInit = {}) {
export default tool({
description: DESCRIPTION,
args: {
- assignee: tool.schema
- .enum(ASSIGNEES as [string, ...string[]])
- .describe("The username of the assignee")
- .default("rekram1-node"),
+ assignee: tool.schema.enum(ASSIGNEES as [string, ...string[]]).describe("The username of the assignee"),
labels: tool.schema
.array(tool.schema.enum(["nix", "opentui", "perf", "web", "desktop", "zen", "docs", "windows", "core"]))
.describe("The labels(s) to add to the issue")
@@ -68,7 +73,8 @@ export default tool({
results.push("Dropped label: nix (issue does not mention nix)")
}
- const assignee = nix ? "rekram1-node" : web ? pick(TEAM.desktop) : args.assignee
+ // const assignee = nix ? "rekram1-node" : web ? pick(TEAM.desktop) : args.assignee
+ const assignee = web ? pick(TEAM.desktop) : args.assignee
if (labels.includes("zen") && !zen) {
throw new Error("Only add the zen label when issue title/body contains 'zen'")
diff --git a/.opencode/tool/github-triage.txt b/.opencode/tool/github-triage.txt
index 4369ed235..1a2d69bdb 100644
--- a/.opencode/tool/github-triage.txt
+++ b/.opencode/tool/github-triage.txt
@@ -4,3 +4,5 @@ Choose labels and assignee using the current triage policy and ownership rules.
Pick the most fitting labels for the issue and assign one owner.
If unsure, choose the team/section with the most overlap with the issue and assign a member from that team at random.
+
+(Note: rekram1-node is on vacation, do not assign issues to him.)