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

推荐订阅源

博客园_首页
量子位
D
DataBreaches.Net
博客园 - 司徒正美
J
Java Code Geeks
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
aimingoo的专栏
aimingoo的专栏
B
Blog
The Cloudflare Blog
D
Docker
I
InfoQ
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
腾讯CDC
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
小众软件
小众软件
S
SegmentFault 最新的问题
GbyAI
GbyAI
有赞技术团队
有赞技术团队

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(release): allow npm telegram e2e from release branch ·...
steipete · 2026-04-27 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -34,23 +34,8 @@ env:

3434

PNPM_VERSION: "10.33.0"

3535
3636

jobs:

37-

validate_dispatch_ref:

38-

name: Validate dispatch ref

39-

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

40-

steps:

41-

- name: Require main workflow ref

42-

env:

43-

WORKFLOW_REF: ${{ github.ref }}

44-

run: |

45-

set -euo pipefail

46-

if [[ "${WORKFLOW_REF}" != "refs/heads/main" ]]; then

47-

echo "NPM Telegram beta E2E must be dispatched from main so workflow logic stays controlled." >&2

48-

exit 1

49-

fi

50-
5137

approve_release_manager:

5238

name: Approve npm Telegram beta E2E

53-

needs: validate_dispatch_ref

5439

runs-on: ubuntu-latest

5540

environment: npm-release

5641

steps:

@@ -71,7 +56,7 @@ jobs:

7156

DOCKER_BUILD_SUMMARY: "false"

7257

DOCKER_BUILD_RECORD_UPLOAD: "false"

7358

steps:

74-

- name: Checkout main

59+

- name: Checkout dispatch ref

7560

uses: actions/checkout@v6

7661

with:

7762

ref: ${{ github.sha }}

Original file line numberDiff line numberDiff line change

@@ -47,6 +47,8 @@ describe("npm Telegram live Docker E2E", () => {

4747

expect(workflow).toContain("approve_release_manager:");

4848

expect(workflow).toContain("environment: npm-release");

4949

expect(workflow).toContain("needs: approve_release_manager");

50+

expect(workflow).not.toContain("Require main workflow ref");

51+

expect(workflow).not.toContain("refs/heads/main");

5052

expect(workflow).not.toContain('new Set(["admin", "write"])');

5153

expect(workflow).not.toContain("data.role_name");

5254

expect(workflow).not.toContain("github.rest.teams.listMembersInOrg");