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

推荐订阅源

D
Docker
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
A
About on SuperTechFans
博客园 - 【当耐特】
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
博客园 - 叶小钗
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
博客园 - 聂微东
B
Blog RSS Feed
H
Help Net Security
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
D
DataBreaches.Net
L
LangChain Blog
Vercel News
Vercel News

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(ci): bound real behavior proof API waits · openclaw/o...
vincentkoc · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,9 +1,12 @@

11

#!/usr/bin/env node

22

import { readFileSync } from "node:fs";

3+

import { pathToFileURL } from "node:url";

34

import {

5+

DEFAULT_GITHUB_API_TIMEOUT_MS,

46

evaluateClawSweeperExactHeadProof,

57

evaluateRealBehaviorProof,

68

isMaintainerTeamMember,

9+

withGitHubApiTimeout,

710

} from "./real-behavior-proof-policy.mjs";

811912

function escapeCommandValue(value) {

@@ -14,7 +17,14 @@ function escapeCommandValue(value) {

1417

.replace(/:/g, "%3A");

1518

}

161917-

async function fetchProofComments({ owner, repo, issueNumber, tokens }) {

20+

export async function fetchProofComments({

21+

owner,

22+

repo,

23+

issueNumber,

24+

tokens,

25+

fetchImpl = fetch,

26+

timeoutMs = DEFAULT_GITHUB_API_TIMEOUT_MS,

27+

}) {

1828

let lastError;

1929

for (const token of tokens.filter(Boolean)) {

2030

const comments = [];

@@ -25,17 +35,27 @@ async function fetchProofComments({ owner, repo, issueNumber, tokens }) {

2535

);

2636

url.searchParams.set("per_page", "100");

2737

url.searchParams.set("page", String(page));

28-

const response = await fetch(url, {

29-

headers: {

30-

Accept: "application/vnd.github+json",

31-

Authorization: `Bearer ${token}`,

32-

"X-GitHub-Api-Version": "2022-11-28",

33-

},

34-

});

38+

const response = await withGitHubApiTimeout(

39+

`proof comment lookup page ${page}`,

40+

timeoutMs,

41+

(signal) =>

42+

fetchImpl(url, {

43+

headers: {

44+

Accept: "application/vnd.github+json",

45+

Authorization: `Bearer ${token}`,

46+

"X-GitHub-Api-Version": "2022-11-28",

47+

},

48+

signal,

49+

}),

50+

);

3551

if (!response.ok) {

3652

throw new Error(`comments API returned ${response.status}`);

3753

}

38-

const pageComments = await response.json();

54+

const pageComments = await withGitHubApiTimeout(

55+

`proof comment response page ${page}`,

56+

timeoutMs,

57+

() => response.json(),

58+

);

3959

comments.push(...pageComments);

4060

if (pageComments.length < 100) {

4161

break;

@@ -49,69 +69,83 @@ async function fetchProofComments({ owner, repo, issueNumber, tokens }) {

4969

throw lastError ?? new Error("No GitHub token available for proof comment lookup.");

5070

}

517152-

const eventPath = process.env.GITHUB_EVENT_PATH;

53-

if (!eventPath) {

54-

console.error("::error title=Real behavior proof failed::GITHUB_EVENT_PATH is not set.");

55-

process.exit(1);

72+

function isMainModule() {

73+

return Boolean(process.argv[1] && import.meta.url === pathToFileURL(process.argv[1]).href);

5674

}

577558-

const event = JSON.parse(readFileSync(eventPath, "utf8"));

59-

const pullRequest = event.pull_request;

60-

if (!pullRequest) {

61-

console.log("No pull_request payload found; skipping real behavior proof gate.");

62-

process.exit(0);

63-

}

76+

async function main(env = process.env) {

77+

const eventPath = env.GITHUB_EVENT_PATH;

78+

if (!eventPath) {

79+

console.error("::error title=Real behavior proof failed::GITHUB_EVENT_PATH is not set.");

80+

process.exit(1);

81+

}

648265-

const appToken = process.env.GH_APP_TOKEN;

66-

const org = event.repository?.owner?.login;

67-

const authorLogin = pullRequest.user?.login;

68-

if (appToken && org && authorLogin) {

69-

try {

70-

if (await isMaintainerTeamMember({ token: appToken, org, login: authorLogin })) {

71-

console.log(

72-

`PR author @${authorLogin} is an active member of the ${org}/maintainer team; skipping real behavior proof gate.`,

83+

const event = JSON.parse(readFileSync(eventPath, "utf8"));

84+

const pullRequest = event.pull_request;

85+

if (!pullRequest) {

86+

console.log("No pull_request payload found; skipping real behavior proof gate.");

87+

process.exit(0);

88+

}

89+90+

const appToken = env.GH_APP_TOKEN;

91+

const org = event.repository?.owner?.login;

92+

const authorLogin = pullRequest.user?.login;

93+

if (appToken && org && authorLogin) {

94+

try {

95+

if (await isMaintainerTeamMember({ token: appToken, org, login: authorLogin })) {

96+

console.log(

97+

`PR author @${authorLogin} is an active member of the ${org}/maintainer team; skipping real behavior proof gate.`,

98+

);

99+

process.exit(0);

100+

}

101+

} catch (error) {

102+

console.warn(

103+

`::warning title=Maintainer membership check failed::${escapeCommandValue(error?.message ?? String(error))}`,

73104

);

74-

process.exit(0);

75105

}

76-

} catch (error) {

77-

console.warn(

78-

`::warning title=Maintainer membership check failed::${escapeCommandValue(error?.message ?? String(error))}`,

79-

);

80106

}

81-

}

8210783-

const evaluation = evaluateRealBehaviorProof({ pullRequest });

84-

if (evaluation.passed) {

85-

console.log(evaluation.reason);

86-

process.exit(0);

87-

}

108+

const evaluation = evaluateRealBehaviorProof({ pullRequest });

109+

if (evaluation.passed) {

110+

console.log(evaluation.reason);

111+

process.exit(0);

112+

}

8811389-

const repository = process.env.GITHUB_REPOSITORY;

90-

if ((appToken || process.env.GITHUB_TOKEN) && repository && pullRequest.number) {

91-

const [owner, repo] = repository.split("/");

92-

try {

93-

const comments = await fetchProofComments({

94-

owner,

95-

repo,

96-

issueNumber: pullRequest.number,

97-

tokens: [appToken, process.env.GITHUB_TOKEN],

98-

});

114+

const repository = env.GITHUB_REPOSITORY;

115+

if ((appToken || env.GITHUB_TOKEN) && repository && pullRequest.number) {

116+

const [owner, repo] = repository.split("/");

117+

try {

118+

const comments = await fetchProofComments({

119+

owner,

120+

repo,

121+

issueNumber: pullRequest.number,

122+

tokens: [appToken, env.GITHUB_TOKEN],

123+

});

99124100-

const clawSweeperEvaluation = evaluateClawSweeperExactHeadProof({

101-

pullRequest,

102-

comments,

103-

});

104-

if (clawSweeperEvaluation.passed) {

105-

console.log(clawSweeperEvaluation.reason);

106-

process.exit(0);

125+

const clawSweeperEvaluation = evaluateClawSweeperExactHeadProof({

126+

pullRequest,

127+

comments,

128+

});

129+

if (clawSweeperEvaluation.passed) {

130+

console.log(clawSweeperEvaluation.reason);

131+

process.exit(0);

132+

}

133+

} catch (error) {

134+

console.warn(

135+

`::warning title=Proof verdict comment lookup failed::${escapeCommandValue(error?.message ?? String(error))}`,

136+

);

107137

}

108-

} catch (error) {

109-

console.warn(

110-

`::warning title=Proof verdict comment lookup failed::${escapeCommandValue(error?.message ?? String(error))}`,

111-

);

112138

}

139+140+

const message = `${evaluation.reason} Add after-fix evidence from a real OpenClaw setup in the PR body. Screenshots, recordings, terminal screenshots, console output, redacted runtime logs, linked artifacts, or copied live output count. Unit tests, mocks, snapshots, lint, typechecks, and CI are supplemental only. A maintainer can apply proof: override when appropriate.`;

141+

console.error(`::error title=Real behavior proof required::${escapeCommandValue(message)}`);

142+

process.exit(1);

113143

}

114144115-

const message = `${evaluation.reason} Add after-fix evidence from a real OpenClaw setup in the PR body. Screenshots, recordings, terminal screenshots, console output, redacted runtime logs, linked artifacts, or copied live output count. Unit tests, mocks, snapshots, lint, typechecks, and CI are supplemental only. A maintainer can apply proof: override when appropriate.`;

116-

console.error(`::error title=Real behavior proof required::${escapeCommandValue(message)}`);

117-

process.exit(1);

145+

export const testing = {

146+

fetchProofComments,

147+

};

148+149+

if (isMainModule()) {

150+

await main();

151+

}