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

推荐订阅源

The Cloudflare Blog
U
Unit 42
F
Fortinet All Blogs
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
Y
Y Combinator Blog
罗磊的独立博客
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
I
InfoQ
博客园 - 叶小钗
博客园 - 聂微东
Last Week in AI
Last Week in AI

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: allow Tideclaw alpha release workflows · openclaw/ope...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -88,6 +88,28 @@ jobs:

8888

ref: ${{ inputs.tag }}

8989

fetch-depth: 0

909091+

- name: Validate Tideclaw alpha preflight target

92+

if: startsWith(github.ref, 'refs/heads/tideclaw/alpha/')

93+

env:

94+

RELEASE_REF: ${{ inputs.tag }}

95+

WORKFLOW_REF: ${{ github.ref }}

96+

run: |

97+

set -euo pipefail

98+

if [[ ! "${RELEASE_REF}" == *"-alpha."* && ! "${RELEASE_REF}" =~ ^[0-9a-fA-F]{40}$ ]]; then

99+

echo "Tideclaw alpha preflight runs must target an alpha prerelease tag or SHA." >&2

100+

exit 1

101+

fi

102+

if [[ ! "${WORKFLOW_REF}" =~ ^refs/heads/tideclaw/alpha/[0-9]{4}-[0-9]{2}-[0-9]{2}-[0-9]{4}Z$ ]]; then

103+

echo "Tideclaw alpha preflight runs must run from tideclaw/alpha/YYYY-MM-DD-HHMMZ." >&2

104+

exit 1

105+

fi

106+

alpha_branch="${WORKFLOW_REF#refs/heads/}"

107+

git fetch --no-tags origin "+refs/heads/${alpha_branch}:refs/remotes/origin/${alpha_branch}"

108+

if ! git merge-base --is-ancestor HEAD "refs/remotes/origin/${alpha_branch}"; then

109+

echo "Alpha preflight target must be reachable from ${alpha_branch}." >&2

110+

exit 1

111+

fi

112+91113

- name: Setup Node environment

92114

uses: ./.github/actions/setup-node-env

93115

with:

@@ -347,13 +369,19 @@ jobs:

347369

permissions:

348370

contents: read

349371

steps:

350-

- name: Require main or release workflow ref for publish

372+

- name: Require trusted workflow ref for publish

351373

env:

374+

RELEASE_TAG: ${{ inputs.tag }}

375+

RELEASE_NPM_DIST_TAG: ${{ inputs.npm_dist_tag }}

352376

WORKFLOW_REF: ${{ github.ref }}

353377

run: |

354378

set -euo pipefail

355-

if [[ "${WORKFLOW_REF}" != "refs/heads/main" ]] && [[ ! "${WORKFLOW_REF}" =~ ^refs/heads/release/[0-9]{4}\.[1-9][0-9]*\.[1-9][0-9]*$ ]]; then

356-

echo "Real publish runs must be dispatched from main or release/YYYY.M.D. Use preflight_only=true for other branch validation."

379+

tideclaw_alpha_publish=false

380+

if [[ "${RELEASE_TAG}" == *"-alpha."* && "${RELEASE_NPM_DIST_TAG}" == "alpha" && "${WORKFLOW_REF}" =~ ^refs/heads/tideclaw/alpha/[0-9]{4}-[0-9]{2}-[0-9]{2}-[0-9]{4}Z$ ]]; then

381+

tideclaw_alpha_publish=true

382+

fi

383+

if [[ "${WORKFLOW_REF}" != "refs/heads/main" ]] && [[ ! "${WORKFLOW_REF}" =~ ^refs/heads/release/[0-9]{4}\.[1-9][0-9]*\.[1-9][0-9]*$ ]] && [[ "${tideclaw_alpha_publish}" != "true" ]]; then

384+

echo "Real publish runs must be dispatched from main, release/YYYY.M.D, or a Tideclaw alpha branch for alpha prereleases. Use preflight_only=true for other branch validation."

357385

exit 1

358386

fi

359387

@@ -409,6 +437,28 @@ jobs:

409437

ref: refs/tags/${{ inputs.tag }}

410438

fetch-depth: 0

411439440+

- name: Validate Tideclaw alpha publish target

441+

if: startsWith(github.ref, 'refs/heads/tideclaw/alpha/')

442+

env:

443+

RELEASE_TAG: ${{ inputs.tag }}

444+

WORKFLOW_REF: ${{ github.ref }}

445+

run: |

446+

set -euo pipefail

447+

if [[ ! "${RELEASE_TAG}" == *"-alpha."* ]]; then

448+

echo "Tideclaw alpha publish runs must target an alpha prerelease tag." >&2

449+

exit 1

450+

fi

451+

if [[ ! "${WORKFLOW_REF}" =~ ^refs/heads/tideclaw/alpha/[0-9]{4}-[0-9]{2}-[0-9]{2}-[0-9]{4}Z$ ]]; then

452+

echo "Tideclaw alpha publish runs must run from tideclaw/alpha/YYYY-MM-DD-HHMMZ." >&2

453+

exit 1

454+

fi

455+

alpha_branch="${WORKFLOW_REF#refs/heads/}"

456+

git fetch --no-tags origin "+refs/heads/${alpha_branch}:refs/remotes/origin/${alpha_branch}"

457+

if ! git merge-base --is-ancestor HEAD "refs/remotes/origin/${alpha_branch}"; then

458+

echo "Alpha publish tag must be reachable from ${alpha_branch}." >&2

459+

exit 1

460+

fi

461+412462

- name: Setup Node environment

413463

uses: ./.github/actions/setup-node-env

414464

with: