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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
博客园 - 司徒正美
D
DataBreaches.Net
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
腾讯CDC
博客园_首页
The Cloudflare Blog
S
SegmentFault 最新的问题
C
Check Point Blog
美团技术团队
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale

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): widen CodeQL PR guard · openclaw/openclaw@6e73101
vincentkoc · 2026-04-30 · via Recent Commits to openclaw:main

@@ -10,16 +10,26 @@ on:

1010

type: choice

1111

options:

1212

- all

13+

- plugin-boundary

1314

- plugin-sdk-package-contract

1415

- plugin-sdk-reply-runtime

1516

- provider-runtime-boundary

1617

- session-diagnostics-boundary

18+

pull_request:

19+

types: [opened, synchronize, reopened, ready_for_review]

20+

paths:

21+

- ".github/codeql/**"

22+

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

23+

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

24+

- "packages/plugin-sdk/**"

25+

- "src/plugin-sdk/**"

26+

- "src/plugins/**"

1727

schedule:

1828

- cron: "30 6 * * *"

19292030

concurrency:

21-

group: codeql-critical-quality-${{ github.workflow }}-${{ github.event_name == 'workflow_dispatch' && github.run_id || github.sha }}

22-

cancel-in-progress: false

31+

group: codeql-critical-quality-${{ github.workflow }}-${{ github.event_name == 'workflow_dispatch' && github.run_id || github.event_name == 'pull_request' && github.event.pull_request.number || github.sha }}

32+

cancel-in-progress: ${{ github.event_name == 'pull_request' }}

23332434

env:

2535

FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

@@ -32,7 +42,7 @@ permissions:

3242

jobs:

3343

core-auth-secrets:

3444

name: Critical Quality (core-auth-secrets)

35-

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

45+

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

3646

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

3747

timeout-minutes: 25

3848

steps:

@@ -54,7 +64,7 @@ jobs:

54645565

config-boundary:

5666

name: Critical Quality (config-boundary)

57-

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

67+

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

5868

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

5969

timeout-minutes: 25

6070

steps:

@@ -76,7 +86,7 @@ jobs:

76867787

gateway-runtime-boundary:

7888

name: Critical Quality (gateway-runtime-boundary)

79-

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

89+

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

8090

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

8191

timeout-minutes: 25

8292

steps:

@@ -98,7 +108,7 @@ jobs:

9810899109

channel-runtime-boundary:

100110

name: Critical Quality (channel-runtime-boundary)

101-

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

111+

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

102112

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

103113

timeout-minutes: 25

104114

steps:

@@ -120,7 +130,7 @@ jobs:

120130121131

agent-runtime-boundary:

122132

name: Critical Quality (agent-runtime-boundary)

123-

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

133+

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

124134

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

125135

timeout-minutes: 25

126136

steps:

@@ -142,7 +152,7 @@ jobs:

142152143153

mcp-process-runtime-boundary:

144154

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

145-

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

155+

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

146156

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

147157

timeout-minutes: 25

148158

steps:

@@ -164,7 +174,7 @@ jobs:

164174165175

memory-runtime-boundary:

166176

name: Critical Quality (memory-runtime-boundary)

167-

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

177+

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

168178

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

169179

timeout-minutes: 25

170180

steps:

@@ -186,7 +196,7 @@ jobs:

186196187197

session-diagnostics-boundary:

188198

name: Critical Quality (session-diagnostics-boundary)

189-

if: ${{ github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == 'session-diagnostics-boundary' }}

199+

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

190200

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

191201

timeout-minutes: 25

192202

steps:

@@ -208,7 +218,7 @@ jobs:

208218209219

plugin-sdk-reply-runtime:

210220

name: Critical Quality (plugin-sdk-reply-runtime)

211-

if: ${{ github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == 'plugin-sdk-reply-runtime' }}

221+

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

212222

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

213223

timeout-minutes: 25

214224

steps:

@@ -230,7 +240,7 @@ jobs:

230240231241

provider-runtime-boundary:

232242

name: Critical Quality (provider-runtime-boundary)

233-

if: ${{ github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == 'provider-runtime-boundary' }}

243+

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

234244

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

235245

timeout-minutes: 25

236246

steps:

@@ -252,7 +262,7 @@ jobs:

252262253263

ui-control-plane:

254264

name: Critical Quality (ui-control-plane)

255-

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

265+

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

256266

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

257267

timeout-minutes: 25

258268

steps:

@@ -274,7 +284,7 @@ jobs:

274284275285

web-media-runtime-boundary:

276286

name: Critical Quality (web-media-runtime-boundary)

277-

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

287+

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

278288

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

279289

timeout-minutes: 25

280290

steps:

@@ -296,7 +306,7 @@ jobs:

296306297307

plugin-boundary:

298308

name: Critical Quality (plugin-boundary)

299-

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

309+

if: ${{ (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 == 'plugin-boundary') }}

300310

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

301311

timeout-minutes: 25

302312

steps:

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

318328319329

plugin-sdk-package-contract:

320330

name: Critical Quality (plugin-sdk-package-contract)

321-

if: ${{ github.event_name != 'workflow_dispatch' || inputs.profile == 'all' || inputs.profile == 'plugin-sdk-package-contract' }}

331+

if: ${{ (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 == 'plugin-sdk-package-contract') }}

322332

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

323333

timeout-minutes: 25

324334

steps: