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

推荐订阅源

F
Fortinet All Blogs
博客园 - 三生石上(FineUI控件)
小众软件
小众软件
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
Last Week in AI
Last Week in AI
V
V2EX
博客园_首页
IT之家
IT之家
Jina AI
Jina AI
博客园 - 叶小钗
The Cloudflare Blog
T
Tailwind CSS Blog
腾讯CDC
B
Blog
D
Docker
L
LangChain Blog
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI

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
chore(ci): add process CodeQL PR quality guard · openclaw...
vincentkoc · 2026-04-30 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -12,6 +12,7 @@ on:

1212

- all

1313

- channel-runtime-boundary

1414

- gateway-runtime-boundary

15+

- mcp-process-runtime-boundary

1516

- plugin-boundary

1617

- plugin-sdk-package-contract

1718

- plugin-sdk-reply-runtime

@@ -30,9 +31,12 @@ on:

3031

- "src/gateway/server-methods/**"

3132

- "src/gateway/server-methods.ts"

3233

- "src/gateway/server-methods-list.ts"

34+

- "src/infra/outbound/**"

35+

- "src/mcp/**"

3336

- "src/model-catalog/**"

3437

- "src/plugin-sdk/**"

3538

- "src/plugins/**"

39+

- "src/process/**"

3640

schedule:

3741

- cron: "30 6 * * *"

3842

@@ -57,6 +61,7 @@ jobs:

5761

outputs:

5862

channel: ${{ steps.detect.outputs.channel }}

5963

gateway: ${{ steps.detect.outputs.gateway }}

64+

mcp_process: ${{ steps.detect.outputs.mcp_process }}

6065

plugin: ${{ steps.detect.outputs.plugin }}

6166

plugin_sdk_package: ${{ steps.detect.outputs.plugin_sdk_package }}

6267

provider: ${{ steps.detect.outputs.provider }}

@@ -73,13 +78,15 @@ jobs:

7378
7479

channel=false

7580

gateway=false

81+

mcp_process=false

7682

plugin=false

7783

plugin_sdk_package=false

7884

provider=false

7985
8086

if [[ "${EVENT_NAME}" != "pull_request" ]]; then

8187

channel=true

8288

gateway=true

89+

mcp_process=true

8390

plugin=true

8491

plugin_sdk_package=true

8592

provider=true

@@ -89,6 +96,7 @@ jobs:

8996

.github/codeql/*|.github/workflows/codeql-critical-quality.yml)

9097

channel=true

9198

gateway=true

99+

mcp_process=true

92100

plugin=true

93101

plugin_sdk_package=true

94102

provider=true

@@ -99,6 +107,9 @@ jobs:

99107

src/gateway/method-scopes.ts|src/gateway/protocol/*|src/gateway/server-methods/*|src/gateway/server-methods.ts|src/gateway/server-methods-list.ts)

100108

gateway=true

101109

;;

110+

src/infra/outbound/*|src/mcp/*|src/process/*)

111+

mcp_process=true

112+

;;

102113

src/plugin-sdk/*)

103114

plugin=true

104115

plugin_sdk_package=true

@@ -123,6 +134,7 @@ jobs:

123134

{

124135

echo "channel=${channel}"

125136

echo "gateway=${gateway}"

137+

echo "mcp_process=${mcp_process}"

126138

echo "plugin=${plugin}"

127139

echo "plugin_sdk_package=${plugin_sdk_package}"

128140

echo "provider=${provider}"

@@ -242,7 +254,8 @@ jobs:

242254
243255

mcp-process-runtime-boundary:

244256

name: Critical Quality (mcp-process-runtime-boundary)

245-

if: ${{ github.event_name != 'pull_request' && (github.event_name != 'workflow_dispatch' || inputs.profile == 'all') }}

257+

needs: quality-shards

258+

if: ${{ needs.quality-shards.outputs.mcp_process == 'true' && (github.event_name != 'pull_request' || !github.event.pull_request.draft) && (github.event_name == 'pull_request' || github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == 'mcp-process-runtime-boundary') }}

246259

runs-on: blacksmith-4vcpu-ubuntu-2404

247260

timeout-minutes: 25

248261

steps:

Original file line numberDiff line numberDiff line change

@@ -335,12 +335,12 @@ The pull request guard stays light: it only starts for changes under `.github/ac

335335
336336

### Critical Quality categories

337337
338-

`CodeQL Critical Quality` is the matching non-security shard. It runs only error-severity, non-security JavaScript/TypeScript quality queries over narrow high-value surfaces on the smaller Blacksmith Linux runner. Its pull request guard is intentionally smaller than the scheduled profile: non-draft PRs only run the matching `channel-runtime-boundary`, `gateway-runtime-boundary`, `provider-runtime-boundary`, `plugin-boundary`, and `plugin-sdk-package-contract` shards for channel runtime, gateway protocol/server-method, provider runtime/model catalog, plugin loader, Plugin SDK, or package-contract changes. CodeQL config and quality workflow changes run all five PR quality shards.

338+

`CodeQL Critical Quality` is the matching non-security shard. It runs only error-severity, non-security JavaScript/TypeScript quality queries over narrow high-value surfaces on the smaller Blacksmith Linux runner. Its pull request guard is intentionally smaller than the scheduled profile: non-draft PRs only run the matching `channel-runtime-boundary`, `gateway-runtime-boundary`, `mcp-process-runtime-boundary`, `provider-runtime-boundary`, `plugin-boundary`, and `plugin-sdk-package-contract` shards for channel runtime, gateway protocol/server-method, MCP/process/outbound delivery, provider runtime/model catalog, plugin loader, Plugin SDK, or package-contract changes. CodeQL config and quality workflow changes run all six PR quality shards.

339339
340340

Manual dispatch accepts:

341341
342342

```

343-

profile=all|channel-runtime-boundary|gateway-runtime-boundary|plugin-boundary|plugin-sdk-package-contract|plugin-sdk-reply-runtime|provider-runtime-boundary|session-diagnostics-boundary

343+

profile=all|channel-runtime-boundary|gateway-runtime-boundary|mcp-process-runtime-boundary|plugin-boundary|plugin-sdk-package-contract|plugin-sdk-reply-runtime|provider-runtime-boundary|session-diagnostics-boundary

344344

```

345345
346346

The narrow profiles are teaching/iteration hooks for running one quality shard in isolation.