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

推荐订阅源

爱范儿
爱范儿
量子位
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
J
Java Code Geeks
B
Blog
V
V2EX
博客园 - 三生石上(FineUI控件)
Blog — PlanetScale
Blog — PlanetScale
aimingoo的专栏
aimingoo的专栏
Y
Y Combinator Blog
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The Cloudflare Blog
A
About on SuperTechFans
D
DataBreaches.Net
阮一峰的网络日志
阮一峰的网络日志
博客园 - Franky
H
Help Net Security
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
MongoDB | Blog
MongoDB | Blog
L
LangChain 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(release): require all plugins for core publish · openc...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -122,6 +122,10 @@ jobs:

122122

echo "publish_openclaw_npm=true requires dispatching this workflow from main, release/YYYY.M.D, or a Tideclaw alpha branch for alpha prereleases." >&2

123123

exit 1

124124

fi

125+

if [[ "${PUBLISH_OPENCLAW_NPM}" == "true" && "${PLUGIN_PUBLISH_SCOPE}" != "all-publishable" ]]; then

126+

echo "publish_openclaw_npm=true requires plugin_publish_scope=all-publishable so every publishable official plugin is released with OpenClaw." >&2

127+

exit 1

128+

fi

125129

if [[ "${PLUGIN_PUBLISH_SCOPE}" == "selected" && -z "${PLUGINS}" ]]; then

126130

echo "plugin_publish_scope=selected requires plugins." >&2

127131

exit 1

Original file line numberDiff line numberDiff line change

@@ -685,10 +685,12 @@ gh workflow run openclaw-release-publish.yml \

685685

```

686686
687687

Use the lower-level `Plugin NPM Release` and `Plugin ClawHub Release` workflows

688-

only for focused repair or republish work. For a selected plugin repair, pass

689-

`plugin_publish_scope=selected` and `plugins=@openclaw/name` to

690-

`OpenClaw Release Publish`, or dispatch the child workflow directly when the

691-

OpenClaw package must not be published.

688+

only for focused repair or republish work. `OpenClaw Release Publish` rejects

689+

`plugin_publish_scope=selected` when `publish_openclaw_npm=true` so the core

690+

package cannot ship without every publishable official plugin, including

691+

`@openclaw/diffs-language-pack`. For a selected plugin repair, set

692+

`publish_openclaw_npm=false` with `plugin_publish_scope=selected` and

693+

`plugins=@openclaw/name`, or dispatch the child workflow directly.

692694
693695

## NPM workflow inputs

694696

@@ -710,7 +712,7 @@ OpenClaw package must not be published.

710712

required when `publish_openclaw_npm=true`

711713

- `npm_dist_tag`: npm target tag for the OpenClaw package

712714

- `plugin_publish_scope`: defaults to `all-publishable`; use `selected` only

713-

for focused repair work

715+

for focused plugin-only repair work with `publish_openclaw_npm=false`

714716

- `plugins`: comma-separated `@openclaw/*` package names when

715717

`plugin_publish_scope=selected`

716718

- `publish_openclaw_npm`: defaults to `true`; set `false` only when using the

Original file line numberDiff line numberDiff line change

@@ -141,6 +141,11 @@ export function parseArgs(argv) {

141141

if (options.pluginPublishScope === "selected" && !options.plugins.trim()) {

142142

throw new Error("--plugin-publish-scope selected requires --plugins");

143143

}

144+

if (options.pluginPublishScope === "selected") {

145+

throw new Error(

146+

"--plugin-publish-scope selected is only for plugin-only repair publishes; release candidates publish OpenClaw with --plugin-publish-scope all-publishable",

147+

);

148+

}

144149

if (options.pluginPublishScope === "all-publishable" && options.plugins.trim()) {

145150

throw new Error("--plugins is only valid with --plugin-publish-scope selected");

146151

}

Original file line numberDiff line numberDiff line change

@@ -1304,6 +1304,9 @@ describe("package artifact reuse", () => {

13041304

expect(workflow).toContain(

13051305

"Full release validation must run rerun_group=all before npm publish",

13061306

);

1307+

expect(workflow).toContain(

1308+

"publish_openclaw_npm=true requires plugin_publish_scope=all-publishable",

1309+

);

13071310

expect(workflow).toContain("preflight-manifest.json");

13081311

expect(npmWorkflow).toContain("preflight-manifest.json");

13091312

expect(npmWorkflow).toContain("Verify full release validation run metadata");

Original file line numberDiff line numberDiff line change

@@ -61,6 +61,19 @@ describe("release candidate checklist", () => {

6161

).toThrow("--plugin-publish-scope selected requires --plugins");

6262

});

6363
64+

it("rejects selected plugin publish scope for release candidates", () => {

65+

expect(() =>

66+

parseArgs([

67+

"--tag",

68+

"v2026.5.14-beta.3",

69+

"--plugin-publish-scope",

70+

"selected",

71+

"--plugins",

72+

"@openclaw/diffs",

73+

]),

74+

).toThrow("release candidates publish OpenClaw with --plugin-publish-scope all-publishable");

75+

});

76+
6477

it("extracts a workflow run id from gh dispatch output", () => {

6578

expect(

6679

parseRunIdFromDispatchOutput(