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

推荐订阅源

J
Java Code Geeks
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
腾讯CDC
D
Docker
The Cloudflare Blog
量子位
爱范儿
爱范儿
L
LangChain Blog
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Vercel News
Vercel News
MyScale Blog
MyScale 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
chore(ci): add provider CodeQL PR quality guard · opencla...
vincentkoc · 2026-04-30 · via Recent Commits to openclaw:main

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

2828

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

2929

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

3030

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

31+

- "src/model-catalog/**"

3132

- "src/plugin-sdk/**"

3233

- "src/plugins/**"

3334

schedule:

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

5556

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

5657

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

5758

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

59+

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

5860

steps:

5961

- name: Detect PR shard paths

6062

id: detect

@@ -69,26 +71,40 @@ jobs:

6971

gateway=false

7072

plugin=false

7173

plugin_sdk_package=false

74+

provider=false

72757376

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

7477

gateway=true

7578

plugin=true

7679

plugin_sdk_package=true

80+

provider=true

7781

else

7882

while IFS= read -r file; do

7983

case "${file}" in

8084

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

8185

gateway=true

8286

plugin=true

8387

plugin_sdk_package=true

88+

provider=true

8489

;;

8590

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

8691

gateway=true

8792

;;

88-

src/plugin-sdk/*|src/plugins/*)

93+

src/plugin-sdk/*)

8994

plugin=true

95+

plugin_sdk_package=true

96+

;;

97+

src/plugins/provider-contract-public-artifacts.ts|src/plugins/provider-public-artifacts.ts|src/plugins/web-provider-public-artifacts*.ts)

98+

plugin=true

99+

provider=true

100+

;;

101+

src/model-catalog/*|src/plugins/*provider*.ts|src/plugins/capability-provider-runtime.ts|src/plugins/compaction-provider.ts|src/plugins/memory-embedding-provider*.ts|src/plugins/memory-embedding-providers*.ts|src/plugins/migration-provider-runtime.ts|src/plugins/synthetic-auth.runtime.ts|src/plugins/web-fetch-providers*.ts|src/plugins/web-search-providers*.ts)

102+

provider=true

90103

;;

91-

packages/plugin-package-contract/*|packages/plugin-sdk/*|src/plugin-sdk/*)

104+

src/plugins/activation-planner.ts|src/plugins/api-builder.ts|src/plugins/bundled-*.ts|src/plugins/captured-registration.ts|src/plugins/config-*.ts|src/plugins/discovery.ts|src/plugins/effective-plugin-ids.ts|src/plugins/externalized-bundled-plugins.ts|src/plugins/installed-plugin-index*.ts|src/plugins/loader*.ts|src/plugins/manifest*.ts|src/plugins/module-export.ts|src/plugins/package-entrypoints.ts|src/plugins/plugin-registry*.ts|src/plugins/public-surface*.ts|src/plugins/registry.ts|src/plugins/registry-types.ts|src/plugins/runtime|src/plugins/runtime/*|src/plugins/runtime-state.ts|src/plugins/runtime.ts|src/plugins/sdk-alias.ts|src/plugins/source-loader.ts|src/plugins/types.ts|src/plugins/validation-diagnostics.ts)

105+

plugin=true

106+

;;

107+

packages/plugin-package-contract/*|packages/plugin-sdk/*)

92108

plugin_sdk_package=true

93109

;;

94110

esac

@@ -99,6 +115,7 @@ jobs:

99115

echo "gateway=${gateway}"

100116

echo "plugin=${plugin}"

101117

echo "plugin_sdk_package=${plugin_sdk_package}"

118+

echo "provider=${provider}"

102119

} >> "${GITHUB_OUTPUT}"

103120104121

core-auth-secrets:

@@ -302,7 +319,8 @@ jobs:

302319303320

provider-runtime-boundary:

304321

name: Critical Quality (provider-runtime-boundary)

305-

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

322+

needs: quality-shards

323+

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

306324

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

307325

timeout-minutes: 25

308326

steps: