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

推荐订阅源

博客园_首页
爱范儿
爱范儿
罗磊的独立博客
V
V2EX
量子位
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
博客园 - 司徒正美
Jina AI
Jina AI
博客园 - 叶小钗
小众软件
小众软件
博客园 - 【当耐特】
Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
博客园 - 聂微东
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
P
Proofpoint News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell

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
ci: capture dispatched full validation runs · openclaw/op...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -123,21 +123,29 @@ jobs:

123123

local workflow="$1"

124124

shift

125125126-

local before_json run_id status conclusion url

126+

local before_json dispatch_output run_id status conclusion url

127127

before_json="$(gh run list --workflow "$workflow" --event workflow_dispatch --limit 100 --json databaseId --jq '[.[].databaseId]')"

128128129-

gh workflow run "$workflow" --ref "$CHILD_WORKFLOW_REF" "$@"

129+

dispatch_output="$(gh workflow run "$workflow" --ref "$CHILD_WORKFLOW_REF" "$@" 2>&1)"

130+

printf '%s\n' "$dispatch_output"

131+

run_id="$(

132+

printf '%s\n' "$dispatch_output" |

133+

sed -nE 's#.*actions/runs/([0-9]+).*#\1#p' |

134+

tail -n 1

135+

)"

130136131-

for _ in $(seq 1 60); do

132-

run_id="$(

133-

BEFORE_IDS="$before_json" gh run list --workflow "$workflow" --event workflow_dispatch --limit 50 --json databaseId,createdAt \

134-

--jq 'map(select(.databaseId as $id | (env.BEFORE_IDS | fromjson | index($id) | not))) | sort_by(.createdAt) | reverse | .[0].databaseId // empty'

135-

)"

136-

if [[ -n "$run_id" ]]; then

137-

break

138-

fi

139-

sleep 5

140-

done

137+

if [[ -z "$run_id" ]]; then

138+

for _ in $(seq 1 60); do

139+

run_id="$(

140+

BEFORE_IDS="$before_json" gh run list --workflow "$workflow" --event workflow_dispatch --limit 50 --json databaseId,createdAt \

141+

--jq 'map(select(.databaseId as $id | (env.BEFORE_IDS | fromjson | index($id) | not))) | sort_by(.createdAt) | reverse | .[0].databaseId // empty'

142+

)"

143+

if [[ -n "$run_id" ]]; then

144+

break

145+

fi

146+

sleep 5

147+

done

148+

fi

141149142150

if [[ -z "${run_id:-}" ]]; then

143151

echo "Could not find dispatched run for ${workflow}." >&2

@@ -200,21 +208,29 @@ jobs:

200208

local workflow="$1"

201209

shift

202210203-

local before_json run_id status conclusion url

211+

local before_json dispatch_output run_id status conclusion url

204212

before_json="$(gh run list --workflow "$workflow" --event workflow_dispatch --limit 100 --json databaseId --jq '[.[].databaseId]')"

205213206-

gh workflow run "$workflow" --ref "$CHILD_WORKFLOW_REF" "$@"

214+

dispatch_output="$(gh workflow run "$workflow" --ref "$CHILD_WORKFLOW_REF" "$@" 2>&1)"

215+

printf '%s\n' "$dispatch_output"

216+

run_id="$(

217+

printf '%s\n' "$dispatch_output" |

218+

sed -nE 's#.*actions/runs/([0-9]+).*#\1#p' |

219+

tail -n 1

220+

)"

207221208-

for _ in $(seq 1 60); do

209-

run_id="$(

210-

BEFORE_IDS="$before_json" gh run list --workflow "$workflow" --event workflow_dispatch --limit 50 --json databaseId,createdAt \

211-

--jq 'map(select(.databaseId as $id | (env.BEFORE_IDS | fromjson | index($id) | not))) | sort_by(.createdAt) | reverse | .[0].databaseId // empty'

212-

)"

213-

if [[ -n "$run_id" ]]; then

214-

break

215-

fi

216-

sleep 5

217-

done

222+

if [[ -z "$run_id" ]]; then

223+

for _ in $(seq 1 60); do

224+

run_id="$(

225+

BEFORE_IDS="$before_json" gh run list --workflow "$workflow" --event workflow_dispatch --limit 50 --json databaseId,createdAt \

226+

--jq 'map(select(.databaseId as $id | (env.BEFORE_IDS | fromjson | index($id) | not))) | sort_by(.createdAt) | reverse | .[0].databaseId // empty'

227+

)"

228+

if [[ -n "$run_id" ]]; then

229+

break

230+

fi

231+

sleep 5

232+

done

233+

fi

218234219235

if [[ -z "${run_id:-}" ]]; then

220236

echo "Could not find dispatched run for ${workflow}." >&2