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

推荐订阅源

MyScale Blog
MyScale Blog
博客园 - 司徒正美
A
About on SuperTechFans
Vercel News
Vercel News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
爱范儿
爱范儿
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
F
Fortinet All Blogs
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
Jina AI
Jina AI
H
Help Net Security
量子位
IT之家
IT之家

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: add codeql quality profile input (#74348) · openclaw/...
hxy91819 · 2026-04-29 · via Recent Commits to openclaw:main

@@ -2,6 +2,15 @@ name: CodeQL Critical Quality

2233

on:

44

workflow_dispatch:

5+

inputs:

6+

profile:

7+

description: CodeQL quality profile to run

8+

required: false

9+

default: all

10+

type: choice

11+

options:

12+

- all

13+

- plugin-sdk-package-contract

514

schedule:

615

- cron: "30 6 * * *"

716

@@ -20,6 +29,7 @@ permissions:

2029

jobs:

2130

core-auth-secrets:

2231

name: Critical Quality (core-auth-secrets)

32+

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

2333

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

2434

timeout-minutes: 25

2535

steps:

@@ -41,6 +51,7 @@ jobs:

41514252

config-boundary:

4353

name: Critical Quality (config-boundary)

54+

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

4455

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

4556

timeout-minutes: 25

4657

steps:

@@ -62,6 +73,7 @@ jobs:

62736374

gateway-runtime-boundary:

6475

name: Critical Quality (gateway-runtime-boundary)

76+

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

6577

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

6678

timeout-minutes: 25

6779

steps:

@@ -83,6 +95,7 @@ jobs:

83958496

channel-runtime-boundary:

8597

name: Critical Quality (channel-runtime-boundary)

98+

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

8699

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

87100

timeout-minutes: 25

88101

steps:

@@ -104,6 +117,7 @@ jobs:

104117105118

agent-runtime-boundary:

106119

name: Critical Quality (agent-runtime-boundary)

120+

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

107121

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

108122

timeout-minutes: 25

109123

steps:

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

125139126140

mcp-process-runtime-boundary:

127141

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

142+

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

128143

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

129144

timeout-minutes: 25

130145

steps:

@@ -146,6 +161,7 @@ jobs:

146161147162

memory-runtime-boundary:

148163

name: Critical Quality (memory-runtime-boundary)

164+

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

149165

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

150166

timeout-minutes: 25

151167

steps:

@@ -167,6 +183,7 @@ jobs:

167183168184

ui-control-plane:

169185

name: Critical Quality (ui-control-plane)

186+

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

170187

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

171188

timeout-minutes: 25

172189

steps:

@@ -188,6 +205,7 @@ jobs:

188205189206

web-media-runtime-boundary:

190207

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

208+

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

191209

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

192210

timeout-minutes: 25

193211

steps:

@@ -209,6 +227,7 @@ jobs:

209227210228

plugin-boundary:

211229

name: Critical Quality (plugin-boundary)

230+

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

212231

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

213232

timeout-minutes: 25

214233

steps:

@@ -230,6 +249,7 @@ jobs:

230249231250

plugin-sdk-package-contract:

232251

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

252+

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

233253

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

234254

timeout-minutes: 25

235255

steps: