惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 司徒正美
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
月光博客
月光博客
量子位
大猫的无限游戏
大猫的无限游戏
Stack Overflow Blog
Stack Overflow Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
P
Proofpoint News Feed
B
Blog RSS Feed
美团技术团队
腾讯CDC
C
Check Point Blog
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
J
Java Code Geeks
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(github): exempt maintainers from barnacle candidate l...
vincentkoc · 2026-04-26 · via Recent Commits to openclaw:main

@@ -3,6 +3,7 @@ import {

33

candidateLabels,

44

classifyPullRequestCandidateLabels,

55

managedLabelSpecs,

6+

runBarnacleAutoResponse,

67

} from "../../scripts/github/barnacle-auto-response.mjs";

7889

const blankTemplateBody = [

@@ -43,6 +44,80 @@ function file(filename: string, status = "modified") {

4344

};

4445

}

454647+

function barnacleContext(pullRequest: Record<string, unknown>, labels: string[] = []) {

48+

return {

49+

repo: {

50+

owner: "openclaw",

51+

repo: "openclaw",

52+

},

53+

payload: {

54+

action: "opened",

55+

pull_request: {

56+

number: 123,

57+

title: "Cleanup plugin docs",

58+

body: blankTemplateBody,

59+

author_association: "CONTRIBUTOR",

60+

user: {

61+

login: "contributor",

62+

},

63+

labels: labels.map((name) => ({ name })),

64+

...pullRequest,

65+

},

66+

},

67+

};

68+

}

69+70+

function barnacleGithub(files: ReturnType<typeof file>[]) {

71+

const calls = {

72+

addLabels: [] as Array<{ issue_number: number; labels: string[] }>,

73+

removeLabel: [] as Array<{ issue_number: number; name: string }>,

74+

};

75+

const github = {

76+

paginate: async () => files,

77+

rest: {

78+

issues: {

79+

addLabels: async (params: { issue_number: number; labels: string[] }) => {

80+

calls.addLabels.push(params);

81+

},

82+

createComment: async () => undefined,

83+

createLabel: async () => undefined,

84+

getLabel: async (params: { name: string }) => ({

85+

data: {

86+

color:

87+

managedLabelSpecs[params.name as keyof typeof managedLabelSpecs]?.color ?? "C5DEF5",

88+

description:

89+

managedLabelSpecs[params.name as keyof typeof managedLabelSpecs]?.description ?? "",

90+

},

91+

}),

92+

lock: async () => undefined,

93+

removeLabel: async (params: { issue_number: number; name: string }) => {

94+

calls.removeLabel.push(params);

95+

},

96+

update: async () => undefined,

97+

updateLabel: async () => undefined,

98+

},

99+

pulls: {

100+

listFiles: async () => files,

101+

},

102+

repos: {

103+

getCollaboratorPermissionLevel: async () => ({

104+

data: {

105+

role_name: "read",

106+

},

107+

}),

108+

},

109+

teams: {

110+

getMembershipForUserInOrg: async () => {

111+

const error = new Error("not found") as Error & { status: number };

112+

error.status = 404;

113+

throw error;

114+

},

115+

},

116+

},

117+

};

118+

return { calls, github };

119+

}

120+46121

describe("barnacle-auto-response", () => {

47122

it("keeps Barnacle-owned labels documented and ClawHub spelled correctly", () => {

48123

expect(managedLabelSpecs["r: skill"].description).toContain("ClawHub");

@@ -119,4 +194,83 @@ describe("barnacle-auto-response", () => {

119194120195

expect(labels).not.toContain(candidateLabels.dirtyCandidate);

121196

});

197+198+

it("does not add candidate labels to maintainer-authored PRs", async () => {

199+

const { calls, github } = barnacleGithub([

200+

file("ui/src/app.ts"),

201+

file("src/gateway/server.ts"),

202+

file("extensions/slack/src/index.ts"),

203+

file("docs/plugins/community.md"),

204+

]);

205+206+

await runBarnacleAutoResponse({

207+

github,

208+

context: barnacleContext({

209+

author_association: "OWNER",

210+

user: {

211+

login: "maintainer",

212+

},

213+

}),

214+

core: {

215+

info: () => undefined,

216+

},

217+

});

218+219+

expect(calls.addLabels).toEqual([]);

220+

});

221+222+

it("removes stale Barnacle candidate and PR-limit labels from maintainer-authored PRs", async () => {

223+

const { calls, github } = barnacleGithub([

224+

file("ui/src/app.ts"),

225+

file("src/gateway/server.ts"),

226+

file("extensions/slack/src/index.ts"),

227+

file("docs/plugins/community.md"),

228+

]);

229+230+

await runBarnacleAutoResponse({

231+

github,

232+

context: barnacleContext(

233+

{

234+

author_association: "OWNER",

235+

user: {

236+

login: "maintainer",

237+

},

238+

},

239+

[candidateLabels.dirtyCandidate, "r: too-many-prs"],

240+

),

241+

core: {

242+

info: () => undefined,

243+

},

244+

});

245+246+

expect(calls.removeLabel).toEqual(

247+

expect.arrayContaining([

248+

expect.objectContaining({ name: candidateLabels.dirtyCandidate }),

249+

expect.objectContaining({ name: "r: too-many-prs" }),

250+

]),

251+

);

252+

});

253+254+

it("still adds candidate labels to broad contributor PRs", async () => {

255+

const { calls, github } = barnacleGithub([

256+

file("ui/src/app.ts"),

257+

file("src/gateway/server.ts"),

258+

file("extensions/slack/src/index.ts"),

259+

file("docs/plugins/community.md"),

260+

]);

261+262+

await runBarnacleAutoResponse({

263+

github,

264+

context: barnacleContext({}),

265+

core: {

266+

info: () => undefined,

267+

},

268+

});

269+270+

expect(calls.addLabels).toContainEqual(

271+

expect.objectContaining({

272+

labels: expect.arrayContaining([candidateLabels.dirtyCandidate]),

273+

}),

274+

);

275+

});

122276

});