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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
月光博客
月光博客
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
小众软件
小众软件
H
Hackread – Cybersecurity News, Data Breaches, AI and More
美团技术团队
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
IT之家
IT之家
Vercel News
Vercel News
量子位
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
腾讯CDC
有赞技术团队
有赞技术团队

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 channel CodeQL PR quality guard · openclaw...
vincentkoc · 2026-04-30 · via Recent Commits to openclaw:main

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

1010

type: choice

1111

options:

1212

- all

13+

- channel-runtime-boundary

1314

- gateway-runtime-boundary

1415

- plugin-boundary

1516

- plugin-sdk-package-contract

@@ -23,6 +24,7 @@ on:

2324

- ".github/workflows/codeql-critical-quality.yml"

2425

- "packages/plugin-package-contract/**"

2526

- "packages/plugin-sdk/**"

27+

- "src/channels/**"

2628

- "src/gateway/method-scopes.ts"

2729

- "src/gateway/protocol/**"

2830

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

@@ -53,6 +55,7 @@ jobs:

5355

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

5456

timeout-minutes: 5

5557

outputs:

58+

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

5659

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

5760

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

5861

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

@@ -68,12 +71,14 @@ jobs:

6871

run: |

6972

set -euo pipefail

707374+

channel=false

7175

gateway=false

7276

plugin=false

7377

plugin_sdk_package=false

7478

provider=false

75797680

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

81+

channel=true

7782

gateway=true

7883

plugin=true

7984

plugin_sdk_package=true

@@ -82,11 +87,15 @@ jobs:

8287

while IFS= read -r file; do

8388

case "${file}" in

8489

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

90+

channel=true

8591

gateway=true

8692

plugin=true

8793

plugin_sdk_package=true

8894

provider=true

8995

;;

96+

src/channels/*)

97+

channel=true

98+

;;

9099

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

91100

gateway=true

92101

;;

@@ -112,6 +121,7 @@ jobs:

112121

fi

113122114123

{

124+

echo "channel=${channel}"

115125

echo "gateway=${gateway}"

116126

echo "plugin=${plugin}"

117127

echo "plugin_sdk_package=${plugin_sdk_package}"

@@ -187,7 +197,8 @@ jobs:

187197188198

channel-runtime-boundary:

189199

name: Critical Quality (channel-runtime-boundary)

190-

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

200+

needs: quality-shards

201+

if: ${{ needs.quality-shards.outputs.channel == '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 == 'channel-runtime-boundary') }}

191202

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

192203

timeout-minutes: 25

193204

steps: