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

推荐订阅源

D
Docker
博客园 - 【当耐特】
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
大猫的无限游戏
大猫的无限游戏
WordPress大学
WordPress大学
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
Apple Machine Learning Research
Apple Machine Learning Research
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
云风的 BLOG
云风的 BLOG
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
Y
Y Combinator Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
B
Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
人人都是产品经理
人人都是产品经理

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: detect clawgrit token at runtime · openclaw/openclaw@...
steipete · 2026-05-02 · via Recent Commits to openclaw:main

@@ -52,7 +52,6 @@ env:

5252

FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true"

5353

OCM_VERSION: v0.2.15

5454

PERFORMANCE_MODEL_ID: gpt-5.4

55-

CLAWGRIT_REPORTS_TOKEN_PRESENT: ${{ secrets.CLAWGRIT_REPORTS_TOKEN != '' && 'true' || 'false' }}

56555756

jobs:

5857

kova:

@@ -120,6 +119,20 @@ jobs:

120119

echo "Skipping ${LANE_ID}: ${reason}" >> "$GITHUB_STEP_SUMMARY"

121120

fi

122121122+

- name: Detect clawgrit report token

123+

id: clawgrit

124+

if: steps.lane.outputs.run == 'true'

125+

env:

126+

CLAWGRIT_REPORTS_TOKEN: ${{ secrets.CLAWGRIT_REPORTS_TOKEN }}

127+

shell: bash

128+

run: |

129+

set -euo pipefail

130+

if [[ -n "${CLAWGRIT_REPORTS_TOKEN:-}" ]]; then

131+

echo "present=true" >> "$GITHUB_OUTPUT"

132+

else

133+

echo "present=false" >> "$GITHUB_OUTPUT"

134+

fi

135+123136

- name: Checkout OpenClaw

124137

if: steps.lane.outputs.run == 'true'

125138

uses: actions/checkout@v6

@@ -193,6 +206,7 @@ jobs:

193206

env:

194207

OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}

195208

OPENAI_BASE_URL: ${{ secrets.OPENAI_BASE_URL }}

209+

CLAWGRIT_REPORTS_TOKEN_PRESENT: ${{ steps.clawgrit.outputs.present || 'false' }}

196210

shell: bash

197211

run: |

198212

set -euo pipefail

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

296310

retention-days: ${{ matrix.deep_profile == 'true' && 14 || 30 }}

297311298312

- name: Checkout clawgrit reports

299-

if: ${{ steps.kova.outputs.report_json != '' && env.CLAWGRIT_REPORTS_TOKEN_PRESENT == 'true' }}

313+

if: ${{ steps.kova.outputs.report_json != '' && steps.clawgrit.outputs.present == 'true' }}

300314

uses: actions/checkout@v6

301315

with:

302316

repository: openclaw/clawgrit-reports

@@ -305,7 +319,7 @@ jobs:

305319

persist-credentials: true

306320307321

- name: Publish to clawgrit reports

308-

if: ${{ steps.kova.outputs.report_json != '' && env.CLAWGRIT_REPORTS_TOKEN_PRESENT == 'true' }}

322+

if: ${{ steps.kova.outputs.report_json != '' && steps.clawgrit.outputs.present == 'true' }}

309323

shell: bash

310324

run: |

311325

set -euo pipefail