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

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
美团技术团队
D
Docker
WordPress大学
WordPress大学
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
Y
Y Combinator Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans

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 full release validation workflow · openclaw/openc...
steipete · 2026-04-27 · via Recent Commits to openclaw:main

@@ -2,6 +2,12 @@ name: CI

2233

on:

44

workflow_dispatch:

5+

inputs:

6+

target_ref:

7+

description: Optional branch, tag, or full commit SHA to validate instead of the workflow ref

8+

required: false

9+

default: ""

10+

type: string

511

push:

612

branches: [main]

713

paths-ignore:

@@ -30,6 +36,7 @@ jobs:

3036

runs-on: ubuntu-24.04

3137

timeout-minutes: 20

3238

outputs:

39+

checkout_sha: ${{ steps.checkout_ref.outputs.sha }}

3340

docs_only: ${{ steps.manifest.outputs.docs_only }}

3441

docs_changed: ${{ steps.manifest.outputs.docs_changed }}

3542

run_node: ${{ steps.manifest.outputs.run_node }}

@@ -66,11 +73,16 @@ jobs:

6673

- name: Checkout

6774

uses: actions/checkout@v6

6875

with:

76+

ref: ${{ inputs.target_ref || github.sha }}

6977

fetch-depth: 1

7078

fetch-tags: false

7179

persist-credentials: false

7280

submodules: false

738182+

- name: Resolve checkout SHA

83+

id: checkout_ref

84+

run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"

85+7486

- name: Ensure preflight base commit

7587

if: github.event_name != 'workflow_dispatch'

7688

uses: ./.github/actions/ensure-base-commit

@@ -302,12 +314,14 @@ jobs:

302314

- name: Checkout

303315

uses: actions/checkout@v6

304316

with:

317+

ref: ${{ inputs.target_ref || github.sha }}

305318

fetch-depth: 1

306319

fetch-tags: false

307320

persist-credentials: false

308321

submodules: false

309322310323

- name: Ensure security base commit

324+

if: github.event_name != 'workflow_dispatch'

311325

uses: ./.github/actions/ensure-base-commit

312326

with:

313327

base-sha: ${{ github.event_name == 'push' && github.event.before || github.event.pull_request.base.sha }}

@@ -391,6 +405,7 @@ jobs:

391405

- name: Checkout

392406

uses: actions/checkout@v6

393407

with:

408+

ref: ${{ inputs.target_ref || github.sha }}

394409

fetch-depth: 1

395410

fetch-tags: false

396411

persist-credentials: false

@@ -453,7 +468,7 @@ jobs:

453468

shell: bash

454469

env:

455470

CHECKOUT_REPO: ${{ github.repository }}

456-

CHECKOUT_SHA: ${{ github.sha }}

471+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

457472

CHECKOUT_TOKEN: ${{ github.token }}

458473

run: |

459474

set -euo pipefail

@@ -525,7 +540,7 @@ jobs:

525540

path: |

526541

dist/

527542

dist-runtime/

528-

key: ${{ runner.os }}-dist-build-${{ github.sha }}

543+

key: ${{ runner.os }}-dist-build-${{ needs.preflight.outputs.checkout_sha }}

529544530545

- name: Pack built runtime artifacts

531546

run: tar --posix -cf dist-runtime-build.tar.zst --use-compress-program zstdmt dist dist-runtime

@@ -654,7 +669,7 @@ jobs:

654669

shell: bash

655670

env:

656671

CHECKOUT_REPO: ${{ github.repository }}

657-

CHECKOUT_SHA: ${{ github.sha }}

672+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

658673

CHECKOUT_TOKEN: ${{ github.token }}

659674

run: |

660675

set -euo pipefail

@@ -749,7 +764,7 @@ jobs:

749764

shell: bash

750765

env:

751766

CHECKOUT_REPO: ${{ github.repository }}

752-

CHECKOUT_SHA: ${{ github.sha }}

767+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

753768

CHECKOUT_TOKEN: ${{ github.token }}

754769

run: |

755770

set -euo pipefail

@@ -852,7 +867,7 @@ jobs:

852867

shell: bash

853868

env:

854869

CHECKOUT_REPO: ${{ github.repository }}

855-

CHECKOUT_SHA: ${{ github.sha }}

870+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

856871

CHECKOUT_TOKEN: ${{ github.token }}

857872

run: |

858873

set -euo pipefail

@@ -920,7 +935,7 @@ jobs:

920935

shell: bash

921936

env:

922937

CHECKOUT_REPO: ${{ github.repository }}

923-

CHECKOUT_SHA: ${{ github.sha }}

938+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

924939

CHECKOUT_TOKEN: ${{ github.token }}

925940

run: |

926941

set -euo pipefail

@@ -1040,7 +1055,7 @@ jobs:

10401055

shell: bash

10411056

env:

10421057

CHECKOUT_REPO: ${{ github.repository }}

1043-

CHECKOUT_SHA: ${{ github.sha }}

1058+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

10441059

CHECKOUT_TOKEN: ${{ github.token }}

10451060

run: |

10461061

set -euo pipefail

@@ -1120,7 +1135,7 @@ jobs:

11201135

shell: bash

11211136

env:

11221137

CHECKOUT_REPO: ${{ github.repository }}

1123-

CHECKOUT_SHA: ${{ github.sha }}

1138+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

11241139

CHECKOUT_TOKEN: ${{ github.token }}

11251140

run: |

11261141

set -euo pipefail

@@ -1307,7 +1322,7 @@ jobs:

13071322

shell: bash

13081323

env:

13091324

CHECKOUT_REPO: ${{ github.repository }}

1310-

CHECKOUT_SHA: ${{ github.sha }}

1325+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

13111326

CHECKOUT_TOKEN: ${{ github.token }}

13121327

run: |

13131328

set -euo pipefail

@@ -1439,7 +1454,7 @@ jobs:

14391454

shell: bash

14401455

env:

14411456

CHECKOUT_REPO: ${{ github.repository }}

1442-

CHECKOUT_SHA: ${{ github.sha }}

1457+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

14431458

CHECKOUT_TOKEN: ${{ github.token }}

14441459

run: |

14451460

set -euo pipefail

@@ -1637,7 +1652,7 @@ jobs:

16371652

shell: bash

16381653

env:

16391654

CHECKOUT_REPO: ${{ github.repository }}

1640-

CHECKOUT_SHA: ${{ github.sha }}

1655+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

16411656

CHECKOUT_TOKEN: ${{ github.token }}

16421657

run: |

16431658

set -euo pipefail

@@ -1700,6 +1715,7 @@ jobs:

17001715

- name: Checkout

17011716

uses: actions/checkout@v6

17021717

with:

1718+

ref: ${{ needs.preflight.outputs.checkout_sha }}

17031719

persist-credentials: false

17041720

submodules: false

17051721

@@ -1742,6 +1758,7 @@ jobs:

17421758

- name: Checkout

17431759

uses: actions/checkout@v6

17441760

with:

1761+

ref: ${{ needs.preflight.outputs.checkout_sha }}

17451762

persist-credentials: false

17461763

submodules: false

17471764

@@ -1846,6 +1863,7 @@ jobs:

18461863

- name: Checkout

18471864

uses: actions/checkout@v6

18481865

with:

1866+

ref: ${{ needs.preflight.outputs.checkout_sha }}

18491867

persist-credentials: false

18501868

submodules: false

18511869

@@ -1886,6 +1904,7 @@ jobs:

18861904

- name: Checkout

18871905

uses: actions/checkout@v6

18881906

with:

1907+

ref: ${{ needs.preflight.outputs.checkout_sha }}

18891908

persist-credentials: false

18901909

submodules: false

18911910

@@ -1986,7 +2005,7 @@ jobs:

19862005

shell: bash

19872006

env:

19882007

CHECKOUT_REPO: ${{ github.repository }}

1989-

CHECKOUT_SHA: ${{ github.sha }}

2008+

CHECKOUT_SHA: ${{ needs.preflight.outputs.checkout_sha }}

19902009

CHECKOUT_TOKEN: ${{ github.token }}

19912010

run: |

19922011

set -euo pipefail