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

推荐订阅源

月光博客
月光博客
D
Docker
腾讯CDC
J
Java Code Geeks
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
IT之家
IT之家
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
爱范儿
爱范儿
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
N
Netflix TechBlog - Medium
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
博客园 - 【当耐特】

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: split package acceptance refs · openclaw/openclaw@02d...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -3,6 +3,11 @@ name: Package Acceptance

33

on:

44

workflow_dispatch:

55

inputs:

6+

workflow_ref:

7+

description: Trusted repo ref for workflow scripts and Docker E2E harness

8+

required: true

9+

default: main

10+

type: string

611

source:

712

description: Package candidate source

813

required: true

@@ -13,8 +18,8 @@ on:

1318

- ref

1419

- url

1520

- artifact

16-

ref:

17-

description: Trusted repo ref for workflow scripts, or package source when source=ref

21+

package_ref:

22+

description: Trusted package source ref when source=ref

1823

required: true

1924

default: main

2025

type: string

@@ -68,6 +73,62 @@ on:

6873

- none

6974

- mock-openai

7075

- live-frontier

76+

workflow_call:

77+

inputs:

78+

workflow_ref:

79+

description: Trusted repo ref for workflow scripts and Docker E2E harness

80+

required: false

81+

default: main

82+

type: string

83+

source:

84+

description: "Package candidate source: npm, ref, url, or artifact"

85+

required: true

86+

type: string

87+

package_ref:

88+

description: Trusted package source ref when source=ref

89+

required: false

90+

default: main

91+

type: string

92+

package_spec:

93+

description: Published package spec when source=npm

94+

required: false

95+

default: openclaw@beta

96+

type: string

97+

package_url:

98+

description: HTTPS .tgz URL when source=url

99+

required: false

100+

default: ""

101+

type: string

102+

package_sha256:

103+

description: Expected package SHA-256; required for source=url

104+

required: false

105+

default: ""

106+

type: string

107+

artifact_run_id:

108+

description: GitHub Actions run id when source=artifact

109+

required: false

110+

default: ""

111+

type: string

112+

artifact_name:

113+

description: Artifact name containing one .tgz when source=artifact

114+

required: false

115+

default: package-under-test

116+

type: string

117+

suite_profile:

118+

description: "Acceptance profile: smoke, package, product, full, or custom"

119+

required: false

120+

default: package

121+

type: string

122+

docker_lanes:

123+

description: Comma/space separated Docker lanes when suite_profile=custom

124+

required: false

125+

default: ""

126+

type: string

127+

telegram_mode:

128+

description: Optional published-npm Telegram QA lane

129+

required: false

130+

default: none

131+

type: string

7113272133

permissions:

73134

actions: read

@@ -104,16 +165,16 @@ jobs:

104165

- name: Checkout package workflow ref

105166

uses: actions/checkout@v6

106167

with:

107-

ref: ${{ inputs.ref }}

108-

fetch-depth: 1

168+

ref: ${{ inputs.workflow_ref }}

169+

fetch-depth: 0

109170110171

- name: Setup Node environment

111172

uses: ./.github/actions/setup-node-env

112173

with:

113174

node-version: ${{ env.NODE_VERSION }}

114175

pnpm-version: ${{ env.PNPM_VERSION }}

115176

install-bun: ${{ inputs.source == 'ref' && 'true' || 'false' }}

116-

install-deps: ${{ inputs.source == 'ref' && 'true' || 'false' }}

177+

install-deps: "false"

117178118179

- name: Download package artifact input

119180

if: inputs.source == 'artifact'

@@ -139,6 +200,7 @@ jobs:

139200

id: resolve

140201

env:

141202

SOURCE: ${{ inputs.source }}

203+

PACKAGE_REF: ${{ inputs.package_ref }}

142204

PACKAGE_SPEC: ${{ inputs.package_spec }}

143205

PACKAGE_URL: ${{ inputs.package_url }}

144206

PACKAGE_SHA256: ${{ inputs.package_sha256 }}

@@ -152,6 +214,7 @@ jobs:

152214153215

node scripts/resolve-openclaw-package-candidate.mjs \

154216

--source "$SOURCE" \

217+

--package-ref "$PACKAGE_REF" \

155218

--package-spec "$PACKAGE_SPEC" \

156219

--package-url "$PACKAGE_URL" \

157220

--package-sha256 "$PACKAGE_SHA256" \

@@ -241,14 +304,20 @@ jobs:

241304

env:

242305

PACKAGE_SHA256: ${{ steps.resolve.outputs.sha256 }}

243306

PACKAGE_VERSION: ${{ steps.resolve.outputs.package_version }}

307+

PACKAGE_REF: ${{ inputs.package_ref }}

244308

SOURCE: ${{ inputs.source }}

245309

SUITE_PROFILE: ${{ inputs.suite_profile }}

310+

WORKFLOW_REF: ${{ inputs.workflow_ref }}

246311

shell: bash

247312

run: |

248313

{

249314

echo "## Package acceptance"

250315

echo

251316

echo "- Source: \`${SOURCE}\`"

317+

echo "- Workflow ref: \`${WORKFLOW_REF}\`"

318+

if [[ "${SOURCE}" == "ref" ]]; then

319+

echo "- Package ref: \`${PACKAGE_REF}\`"

320+

fi

252321

echo "- Version: \`${PACKAGE_VERSION}\`"

253322

echo "- SHA-256: \`${PACKAGE_SHA256}\`"

254323

echo "- Profile: \`${SUITE_PROFILE}\`"

@@ -259,7 +328,7 @@ jobs:

259328

needs: resolve_package

260329

uses: ./.github/workflows/openclaw-live-and-e2e-checks-reusable.yml

261330

with:

262-

ref: ${{ inputs.ref }}

331+

ref: ${{ inputs.workflow_ref }}

263332

include_repo_e2e: false

264333

include_release_path_suites: ${{ needs.resolve_package.outputs.include_release_path_suites == 'true' }}

265334

include_openwebui: ${{ needs.resolve_package.outputs.include_openwebui == 'true' }}