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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
小众软件
小众软件
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园_首页
N
Netflix TechBlog - Medium
B
Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
博客园 - 【当耐特】

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(release): add candidate evidence checklist · openclaw/...
steipete · 2026-05-15 · via Recent Commits to openclaw:main

@@ -883,6 +883,54 @@ jobs:

883883

} >> "$GITHUB_STEP_SUMMARY"

884884

}

885885886+

summarize_failed_child() {

887+

local label="$1"

888+

local run_id="$2"

889+

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

890+

return 0

891+

fi

892+893+

local run_json status conclusion artifacts_json

894+

run_json="$(gh run view "$run_id" --json status,conclusion,url,jobs)"

895+

status="$(jq -r '.status' <<< "$run_json")"

896+

conclusion="$(jq -r '.conclusion' <<< "$run_json")"

897+

if [[ "$status" == "completed" && "$conclusion" == "success" ]]; then

898+

return 0

899+

fi

900+901+

{

902+

echo

903+

echo "### Failed child detail: ${label}"

904+

echo

905+

jq -r '

906+

"- Run: " + (.url // ""),

907+

"- Result: `" + (.status // "") + "/" + (.conclusion // "") + "`",

908+

"",

909+

"Failed jobs:",

910+

(.jobs[]

911+

| select(.conclusion != "success" and .conclusion != "skipped")

912+

| "- `" + (.name | gsub("`"; "\\`")) + "`: `" + ((.conclusion // .status // "") | tostring) + "` " + (.url // ""))

913+

' <<< "$run_json" || true

914+

echo

915+

echo "Artifacts:"

916+

artifacts_json="$(

917+

gh api "repos/${GITHUB_REPOSITORY}/actions/runs/${run_id}/artifacts?per_page=100" 2>/dev/null || true

918+

)"

919+

if [[ -n "${artifacts_json// }" ]]; then

920+

jq -r '

921+

if ((.artifacts // []) | length) == 0 then

922+

"- none"

923+

else

924+

(.artifacts[]

925+

| "- `" + (.name | gsub("`"; "\\`")) + "` (" + ((.size_in_bytes // 0) | tostring) + " bytes)")

926+

end

927+

' <<< "$artifacts_json" || echo "- unable to list artifacts"

928+

else

929+

echo "- unable to list artifacts"

930+

fi

931+

} >> "$GITHUB_STEP_SUMMARY"

932+

}

933+886934

failed=0

887935888936

append_child_overview

@@ -916,6 +964,13 @@ jobs:

916964

summarize_child_timing "release_checks" "$RELEASE_CHECKS_RUN_ID"

917965

summarize_child_timing "npm_telegram" "$NPM_TELEGRAM_RUN_ID"

918966967+

if [[ "$failed" != "0" ]]; then

968+

summarize_failed_child "normal_ci" "$NORMAL_CI_RUN_ID"

969+

summarize_failed_child "plugin_prerelease" "$PLUGIN_PRERELEASE_RUN_ID"

970+

summarize_failed_child "release_checks" "$RELEASE_CHECKS_RUN_ID"

971+

summarize_failed_child "npm_telegram" "$NPM_TELEGRAM_RUN_ID"

972+

fi

973+919974

exit "$failed"

920975921976

- name: Request private evidence update