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

推荐订阅源

B
Blog RSS Feed
量子位
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
B
Blog
U
Unit 42
C
Check Point Blog
I
InfoQ
aimingoo的专栏
aimingoo的专栏
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
云风的 BLOG
云风的 BLOG
宝玉的分享
宝玉的分享
爱范儿
爱范儿

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: fix release validation dispatch and protocol drift · ...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -8,11 +8,6 @@ on:

88

required: true

99

default: main

1010

type: string

11-

workflow_ref:

12-

description: Trusted workflow ref used to run child workflows

13-

required: false

14-

default: main

15-

type: string

1611

provider:

1712

description: Provider lane for cross-OS onboarding and the end-to-end agent turn

1813

required: false

@@ -86,15 +81,15 @@ jobs:

8681

env:

8782

TARGET_REF: ${{ inputs.ref }}

8883

TARGET_SHA: ${{ steps.resolve.outputs.sha }}

89-

WORKFLOW_REF: ${{ inputs.workflow_ref }}

84+

CHILD_WORKFLOW_REF: ${{ github.ref_name }}

9085

NPM_TELEGRAM_PACKAGE_SPEC: ${{ inputs.npm_telegram_package_spec }}

9186

run: |

9287

{

9388

echo "## Full release validation"

9489

echo

9590

echo "- Target ref: \`${TARGET_REF}\`"

9691

echo "- Target SHA: \`${TARGET_SHA}\`"

97-

echo "- Child workflow ref: \`${WORKFLOW_REF}\`"

92+

echo "- Child workflow ref: \`${CHILD_WORKFLOW_REF}\`"

9893

echo "- Normal CI: \`CI\` with \`target_ref=${TARGET_SHA}\`"

9994

echo "- Release/live/Docker/package/QA: \`OpenClaw Release Checks\`"

10095

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

@@ -120,19 +115,18 @@ jobs:

120115

GH_TOKEN: ${{ github.token }}

121116

TARGET_REF: ${{ inputs.ref }}

122117

TARGET_SHA: ${{ needs.resolve_target.outputs.sha }}

123-

WORKFLOW_REF: ${{ inputs.workflow_ref }}

118+

CHILD_WORKFLOW_REF: ${{ github.ref_name }}

124119

run: |

125120

set -euo pipefail

126121127122

dispatch_and_wait() {

128123

local workflow="$1"

129-

local workflow_ref="$2"

130-

shift 2

124+

shift

131125132126

local before_json run_id status conclusion url

133127

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

134128135-

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

129+

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

136130137131

for _ in $(seq 1 60); do

138132

run_id="$(

@@ -178,7 +172,7 @@ jobs:

178172

echo "- Target SHA: \`${TARGET_SHA}\`"

179173

} >> "$GITHUB_STEP_SUMMARY"

180174181-

dispatch_and_wait ci.yml "$WORKFLOW_REF" -f target_ref="$TARGET_SHA"

175+

dispatch_and_wait ci.yml -f target_ref="$TARGET_SHA"

182176183177

release_checks:

184178

name: Run release/live/Docker/QA validation

@@ -196,21 +190,20 @@ jobs:

196190

GH_TOKEN: ${{ github.token }}

197191

TARGET_REF: ${{ inputs.ref }}

198192

TARGET_SHA: ${{ needs.resolve_target.outputs.sha }}

199-

WORKFLOW_REF: ${{ inputs.workflow_ref }}

193+

CHILD_WORKFLOW_REF: ${{ github.ref_name }}

200194

PROVIDER: ${{ inputs.provider }}

201195

MODE: ${{ inputs.mode }}

202196

run: |

203197

set -euo pipefail

204198205199

dispatch_and_wait() {

206200

local workflow="$1"

207-

local workflow_ref="$2"

208-

shift 2

201+

shift

209202210203

local before_json run_id status conclusion url

211204

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

212205213-

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

206+

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

214207215208

for _ in $(seq 1 60); do

216209

run_id="$(

@@ -258,7 +251,7 @@ jobs:

258251

echo "- Cross-OS mode: \`${MODE}\`"

259252

} >> "$GITHUB_STEP_SUMMARY"

260253261-

dispatch_and_wait openclaw-release-checks.yml "$WORKFLOW_REF" \

254+

dispatch_and_wait openclaw-release-checks.yml \

262255

-f ref="$TARGET_SHA" \

263256

-f provider="$PROVIDER" \

264257

-f mode="$MODE"

@@ -278,7 +271,7 @@ jobs:

278271

id: dispatch

279272

env:

280273

GH_TOKEN: ${{ github.token }}

281-

WORKFLOW_REF: ${{ inputs.workflow_ref }}

274+

CHILD_WORKFLOW_REF: ${{ github.ref_name }}

282275

PACKAGE_SPEC: ${{ inputs.npm_telegram_package_spec }}

283276

PROVIDER_MODE: ${{ inputs.npm_telegram_provider_mode }}

284277

SCENARIO: ${{ inputs.npm_telegram_scenario }}

@@ -292,7 +285,7 @@ jobs:

292285

args+=(-f scenario="$SCENARIO")

293286

fi

294287295-

gh workflow run npm-telegram-beta-e2e.yml --ref "$WORKFLOW_REF" "${args[@]}"

288+

gh workflow run npm-telegram-beta-e2e.yml --ref "$CHILD_WORKFLOW_REF" "${args[@]}"

296289297290

run_id=""

298291

for _ in $(seq 1 60); do