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

推荐订阅源

B
Blog RSS Feed
Jina AI
Jina AI
雷峰网
雷峰网
Blog — PlanetScale
Blog — PlanetScale
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Last Week in AI
Last Week in AI
博客园 - 司徒正美
罗磊的独立博客
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
Vercel News
Vercel News
A
About on SuperTechFans
I
InfoQ
D
DataBreaches.Net
爱范儿
爱范儿
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure 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(release): use release approval for npm telegram e2e · ...
obviyus · 2026-04-24 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

3434

PNPM_VERSION: "10.33.0"

3535
3636

jobs:

37-

authorize_actor:

38-

name: Authorize workflow actor

37+

validate_dispatch_ref:

38+

name: Validate dispatch ref

3939

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

4040

steps:

4141

- name: Require main workflow ref

@@ -48,28 +48,20 @@ jobs:

4848

exit 1

4949

fi

5050
51-

- name: Require release manager team membership

52-

uses: actions/github-script@v8

53-

with:

54-

script: |

55-

const { owner } = context.repo;

56-

const teamSlug = "openclaw-release-managers";

57-

const members = await github.paginate(github.rest.teams.listMembersInOrg, {

58-

org: owner,

59-

team_slug: teamSlug,

60-

per_page: 100,

61-

});

62-

const memberLogins = new Set(members.map((member) => member.login));

63-

core.info(`${teamSlug} members loaded: ${memberLogins.size}`);

64-

if (!memberLogins.has(context.actor)) {

65-

core.setFailed(

66-

`Workflow requires active ${teamSlug} membership. Actor "${context.actor}" is not a member of ${owner}/${teamSlug}.`,

67-

);

68-

}

51+

approve_release_manager:

52+

name: Approve release manager run

53+

needs: validate_dispatch_ref

54+

runs-on: ubuntu-latest

55+

environment: npm-release

56+

steps:

57+

- name: Approve npm Telegram beta E2E

58+

env:

59+

PACKAGE_SPEC: ${{ inputs.package_spec }}

60+

run: echo "Approved npm Telegram beta E2E for ${PACKAGE_SPEC}"

6961
7062

run_npm_telegram_beta_e2e:

7163

name: Run published npm Telegram E2E

72-

needs: authorize_actor

64+

needs: approve_release_manager

7365

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

7466

timeout-minutes: 60

7567

environment: qa-live-shared

Original file line numberDiff line numberDiff line change

@@ -41,14 +41,15 @@ describe("npm Telegram live Docker E2E", () => {

4141

expect(script).toContain('credential_role="ci"');

4242

});

4343
44-

it("limits the manual npm beta workflow to release managers", () => {

44+

it("requires release manager environment approval for the manual npm beta workflow", () => {

4545

const workflow = readFileSync(WORKFLOW_PATH, "utf8");

4646
47-

expect(workflow).toContain('const teamSlug = "openclaw-release-managers";');

48-

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

49-

expect(workflow).toContain("memberLogins.has(context.actor)");

47+

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

48+

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

49+

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

5050

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

5151

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

52+

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

5253

expect(workflow).not.toContain("getMembershipForUserInOrg");

5354

});

5455