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

推荐订阅源

N
Netflix TechBlog - Medium
I
InfoQ
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
Docker
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
博客园 - Franky
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
WordPress大学
WordPress大学
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
ci: skip aggregate fan-in after cancellation · openclaw/o...
steipete · 2026-04-22 · via Recent Commits to openclaw:main

@@ -419,7 +419,7 @@ jobs:

419419

security-fast:

420420

permissions: {}

421421

needs: [security-scm-fast, security-dependency-audit]

422-

if: always() && (github.event_name != 'pull_request' || !github.event.pull_request.draft)

422+

if: ${{ !cancelled() && always() && (github.event_name != 'pull_request' || !github.event.pull_request.draft) }}

423423

runs-on: ubuntu-24.04

424424

timeout-minutes: 5

425425

steps:

@@ -721,7 +721,7 @@ jobs:

721721

contents: read

722722

name: checks-fast-contracts-channels

723723

needs: [preflight, checks-fast-channel-contracts-shard]

724-

if: always() && needs.preflight.outputs.run_checks_fast == 'true'

724+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_checks_fast == 'true' }}

725725

runs-on: ubuntu-24.04

726726

timeout-minutes: 5

727727

steps:

@@ -878,7 +878,7 @@ jobs:

878878

contents: read

879879

name: checks-node-extensions

880880

needs: [preflight, checks-node-extensions-shard]

881-

if: always() && needs.preflight.outputs.run_checks_fast == 'true'

881+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_checks_fast == 'true' }}

882882

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

883883

timeout-minutes: 5

884884

steps:

@@ -896,7 +896,7 @@ jobs:

896896

contents: read

897897

name: ${{ matrix.check_name }}

898898

needs: [preflight, build-artifacts]

899-

if: always() && needs.preflight.outputs.run_checks == 'true' && needs.build-artifacts.result == 'success'

899+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_checks == 'true' && needs.build-artifacts.result == 'success' }}

900900

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

901901

timeout-minutes: 60

902902

strategy:

@@ -1212,7 +1212,7 @@ jobs:

12121212

contents: read

12131213

name: ${{ matrix.check_name }}

12141214

needs: [preflight, build-artifacts]

1215-

if: always() && needs.preflight.outputs.run_checks_node_core_dist == 'true' && needs.build-artifacts.result == 'success'

1215+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_checks_node_core_dist == 'true' && needs.build-artifacts.result == 'success' }}

12161216

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

12171217

timeout-minutes: 60

12181218

strategy:

@@ -1356,7 +1356,7 @@ jobs:

13561356

contents: read

13571357

name: checks-node-core

13581358

needs: [preflight, checks-node-core-test-nondist-shard, checks-node-core-test-dist-shard]

1359-

if: always() && needs.preflight.outputs.run_checks == 'true'

1359+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_checks == 'true' }}

13601360

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

13611361

timeout-minutes: 5

13621362

steps:

@@ -1452,7 +1452,7 @@ jobs:

14521452

contents: read

14531453

name: ${{ matrix.check_name }}

14541454

needs: [preflight]

1455-

if: always() && needs.preflight.outputs.run_check == 'true'

1455+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_check == 'true' }}

14561456

runs-on: ${{ github.repository == 'openclaw/openclaw' && matrix.runner || 'ubuntu-24.04' }}

14571457

timeout-minutes: 20

14581458

strategy:

@@ -1573,7 +1573,7 @@ jobs:

15731573

contents: read

15741574

name: "check"

15751575

needs: [preflight, check-shard]

1576-

if: always() && needs.preflight.outputs.run_check == 'true'

1576+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_check == 'true' }}

15771577

runs-on: ubuntu-24.04

15781578

timeout-minutes: 5

15791579

steps:

@@ -1591,7 +1591,7 @@ jobs:

15911591

contents: read

15921592

name: ${{ matrix.check_name }}

15931593

needs: [preflight]

1594-

if: always() && needs.preflight.outputs.run_check_additional == 'true'

1594+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_check_additional == 'true' }}

15951595

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

15961596

timeout-minutes: 20

15971597

strategy:

@@ -1793,7 +1793,7 @@ jobs:

17931793

contents: read

17941794

name: "check-additional"

17951795

needs: [preflight, check-additional-shard]

1796-

if: always() && needs.preflight.outputs.run_check_additional == 'true'

1796+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_check_additional == 'true' }}

17971797

runs-on: ubuntu-24.04

17981798

timeout-minutes: 5

17991799

steps:

@@ -1811,7 +1811,7 @@ jobs:

18111811

contents: read

18121812

name: "build-smoke"

18131813

needs: [preflight, build-artifacts]

1814-

if: always() && needs.preflight.outputs.run_build_smoke == 'true' && (github.event_name != 'push' || needs.build-artifacts.result == 'success')

1814+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_build_smoke == 'true' && (github.event_name != 'push' || needs.build-artifacts.result == 'success') }}

18151815

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }}

18161816

timeout-minutes: 20

18171817

steps:

@@ -2105,7 +2105,7 @@ jobs:

21052105

contents: read

21062106

name: ${{ matrix.check_name }}

21072107

needs: [preflight, build-artifacts]

2108-

if: always() && needs.preflight.outputs.run_macos_node == 'true' && needs.build-artifacts.result == 'success'

2108+

if: ${{ !cancelled() && always() && needs.preflight.outputs.run_macos_node == 'true' && needs.build-artifacts.result == 'success' }}

21092109

runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-6vcpu-macos-latest' || 'macos-latest' }}

21102110

timeout-minutes: 20

21112111

strategy: