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

推荐订阅源

P
Proofpoint News Feed
博客园_首页
WordPress大学
WordPress大学
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
阮一峰的网络日志
阮一峰的网络日志
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
酷 壳 – CoolShell
酷 壳 – CoolShell
Y
Y Combinator Blog
Vercel News
Vercel News
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
G
Google Developers Blog
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
test(scripts): route github yaml pinning guards · opencla...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main

@@ -441,22 +441,172 @@ const INSTALL_DOCKERFILE_TEST_TARGETS = [

441441

"test/scripts/test-install-sh-docker.test.ts",

442442

];

443443

const LIVE_MEDIA_RUNNER_IMAGE_TEST_TARGETS = ["test/scripts/package-acceptance-workflow.test.ts"];

444+

const GITHUB_YAML_PINNING_GUARD_TEST_TARGETS = ["test/scripts/ci-workflow-guards.test.ts"];

445+

const GITHUB_WORKFLOW_OWNER_TEST_TARGETS = new Map([

446+

[

447+

".github/workflows/ci-build-artifacts-testbox.yml",

448+

["test/scripts/package-acceptance-workflow.test.ts"],

449+

],

450+

[

451+

".github/workflows/ci-check-arm-testbox.yml",

452+

["test/scripts/package-acceptance-workflow.test.ts"],

453+

],

454+

[

455+

".github/workflows/ci-check-testbox.yml",

456+

["test/scripts/changed-lanes.test.ts", "test/scripts/package-acceptance-workflow.test.ts"],

457+

],

458+

[

459+

".github/workflows/ci.yml",

460+

[

461+

"test/scripts/changed-lanes.test.ts",

462+

"test/scripts/check-workflows.test.ts",

463+

"test/scripts/plugin-contract-test-plan.test.ts",

464+

"test/scripts/plugin-prerelease-test-plan.test.ts",

465+

"test/scripts/verify-pr-hosted-gates.test.ts",

466+

],

467+

],

468+

[".github/workflows/crabbox-hydrate.yml", ["test/scripts/package-acceptance-workflow.test.ts"]],

469+

[".github/workflows/dependency-guard.yml", ["test/scripts/dependency-guard-workflow.test.ts"]],

470+

[".github/workflows/docker-release.yml", ["src/dockerfile.test.ts"]],

471+

[

472+

".github/workflows/full-release-validation.yml",

473+

[

474+

"src/dockerfile.test.ts",

475+

"test/scripts/package-acceptance-workflow.test.ts",

476+

"test/scripts/plugin-prerelease-test-plan.test.ts",

477+

],

478+

],

479+

[".github/workflows/install-smoke.yml", ["test/scripts/test-install-sh-docker.test.ts"]],

480+

[

481+

".github/workflows/ios-periphery-comment.yml",

482+

["test/scripts/ios-periphery-comment-workflow.test.ts"],

483+

],

484+

[".github/workflows/ios-periphery.yml", ["test/scripts/ios-periphery-comment-workflow.test.ts"]],

485+

[

486+

".github/workflows/live-media-runner-image.yml",

487+

["test/scripts/package-acceptance-workflow.test.ts"],

488+

],

489+

[".github/workflows/macos-release.yml", ["test/scripts/package-acceptance-workflow.test.ts"]],

490+

[

491+

".github/workflows/mantis-telegram-desktop-proof.yml",

492+

["test/scripts/mantis-telegram-desktop-proof-workflow.test.ts"],

493+

],

494+

[

495+

".github/workflows/mantis-telegram-live.yml",

496+

[

497+

"test/scripts/mantis-telegram-desktop-proof-workflow.test.ts",

498+

"test/scripts/package-acceptance-workflow.test.ts",

499+

],

500+

],

501+

[

502+

".github/workflows/npm-telegram-beta-e2e.yml",

503+

["test/scripts/package-acceptance-workflow.test.ts"],

504+

],

505+

[

506+

".github/workflows/openclaw-cross-os-release-checks-reusable.yml",

507+

[

508+

"test/scripts/openclaw-cross-os-release-checks.test.ts",

509+

"test/scripts/openclaw-cross-os-release-workflow.test.ts",

510+

"test/scripts/package-acceptance-workflow.test.ts",

511+

],

512+

],

513+

[

514+

".github/workflows/openclaw-live-and-e2e-checks-reusable.yml",

515+

[

516+

"test/scripts/package-acceptance-workflow.test.ts",

517+

"test/scripts/release-workflow-matrix-plan.test.ts",

518+

"test/scripts/test-install-sh-docker.test.ts",

519+

],

520+

],

521+

[

522+

".github/workflows/openclaw-npm-release.yml",

523+

[

524+

"test/openclaw-npm-postpublish-verify.test.ts",

525+

"test/scripts/package-acceptance-workflow.test.ts",

526+

],

527+

],

528+

[

529+

".github/workflows/openclaw-performance.yml",

530+

["test/scripts/openclaw-performance-workflow.test.ts"],

531+

],

532+

[

533+

".github/workflows/openclaw-release-checks.yml",

534+

[

535+

"test/scripts/openclaw-cross-os-release-checks.test.ts",

536+

"test/scripts/package-acceptance-workflow.test.ts",

537+

"test/scripts/plugin-prerelease-test-plan.test.ts",

538+

"test/scripts/test-install-sh-docker.test.ts",

539+

],

540+

],

541+

[

542+

".github/workflows/openclaw-release-publish.yml",

543+

["test/scripts/package-acceptance-workflow.test.ts"],

544+

],

545+

[

546+

".github/workflows/openclaw-scheduled-live-checks.yml",

547+

["test/scripts/package-acceptance-workflow.test.ts"],

548+

],

549+

[

550+

".github/workflows/openclaw-stable-main-closeout.yml",

551+

["test/scripts/package-acceptance-workflow.test.ts"],

552+

],

553+

[

554+

".github/workflows/package-acceptance.yml",

555+

["test/scripts/package-acceptance-workflow.test.ts"],

556+

],

557+

[

558+

".github/workflows/plugin-clawhub-new.yml",

559+

["test/scripts/package-acceptance-workflow.test.ts"],

560+

],

561+

[

562+

".github/workflows/plugin-clawhub-release.yml",

563+

["test/scripts/package-acceptance-workflow.test.ts"],

564+

],

565+

[

566+

".github/workflows/plugin-npm-release.yml",

567+

["test/scripts/package-acceptance-workflow.test.ts"],

568+

],

569+

[".github/workflows/plugin-prerelease.yml", ["test/scripts/plugin-prerelease-test-plan.test.ts"]],

570+

[

571+

".github/workflows/qa-live-transports-convex.yml",

572+

["test/scripts/package-acceptance-workflow.test.ts"],

573+

],

574+

[

575+

".github/workflows/sandbox-common-smoke.yml",

576+

["test/scripts/sandbox-common-smoke-workflow.test.ts"],

577+

],

578+

[

579+

".github/workflows/security-sensitive-guard.yml",

580+

["test/scripts/security-sensitive-guard-workflow.test.ts"],

581+

],

582+

[".github/workflows/tui-pty.yml", ["test/scripts/package-acceptance-workflow.test.ts"]],

583+

[".github/workflows/update-migration.yml", ["test/scripts/package-acceptance-workflow.test.ts"]],

584+

[

585+

".github/workflows/website-installer-sync.yml",

586+

["test/scripts/website-installer-sync-workflow.test.ts"],

587+

],

588+

[

589+

".github/workflows/windows-node-release.yml",

590+

["test/scripts/package-acceptance-workflow.test.ts"],

591+

],

592+

[".github/workflows/windows-testbox-probe.yml", ["test/scripts/check-workflows.test.ts"]],

593+

]);

444594

const TOOLING_SOURCE_TEST_TARGETS = new Map([

445595

["Dockerfile", ROOT_DOCKERFILE_TEST_TARGETS],

446596

[".crabbox.yaml", ["test/scripts/package-acceptance-workflow.test.ts"]],

447597

[".github/actions/detect-docs-changes/action.yml", ["test/scripts/ci-workflow-guards.test.ts"]],

448598

[

449599

".github/actions/docker-e2e-plan/action.yml",

450-

["test/scripts/package-acceptance-workflow.test.ts"],

600+

["test/scripts/package-acceptance-workflow.test.ts", "test/scripts/ci-workflow-guards.test.ts"],

451601

],

452602

[".github/actions/ensure-base-commit/action.yml", ["test/scripts/ci-workflow-guards.test.ts"]],

453603

[

454604

".github/actions/setup-node-env/action.yml",

455-

["test/scripts/package-acceptance-workflow.test.ts"],

605+

["test/scripts/package-acceptance-workflow.test.ts", "test/scripts/ci-workflow-guards.test.ts"],

456606

],

457607

[

458608

".github/actions/setup-pnpm-store-cache/action.yml",

459-

["test/scripts/package-acceptance-workflow.test.ts"],

609+

["test/scripts/package-acceptance-workflow.test.ts", "test/scripts/ci-workflow-guards.test.ts"],

460610

],

461611

[".github/images/live-media-runner/Dockerfile", LIVE_MEDIA_RUNNER_IMAGE_TEST_TARGETS],

462612

[".github/workflows/ci.yml", ["test/scripts/ci-workflow-guards.test.ts"]],

@@ -476,10 +626,13 @@ const TOOLING_SOURCE_TEST_TARGETS = new Map([

476626

".github/workflows/crabbox-hydrate.yml",

477627

["test/scripts/ci-workflow-guards.test.ts", "test/scripts/package-acceptance-workflow.test.ts"],

478628

],

479-

[".github/workflows/live-media-runner-image.yml", LIVE_MEDIA_RUNNER_IMAGE_TEST_TARGETS],

629+

[

630+

".github/workflows/live-media-runner-image.yml",

631+

[...LIVE_MEDIA_RUNNER_IMAGE_TEST_TARGETS, "test/scripts/ci-workflow-guards.test.ts"],

632+

],

480633

[

481634

".github/workflows/openclaw-live-and-e2e-checks-reusable.yml",

482-

["test/scripts/package-acceptance-workflow.test.ts"],

635+

["test/scripts/package-acceptance-workflow.test.ts", "test/scripts/ci-workflow-guards.test.ts"],

483636

],

484637

[

485638

".github/workflows/openclaw-release-checks.yml",

@@ -2814,6 +2967,20 @@ function resolveParallelsToolingTestTargets(changedPath) {

28142967

return targets;

28152968

}

281629692970+

function resolveGithubYamlGuardTargets(changedPath) {

2971+

if (/^\.github\/workflows\/[^/]+\.ya?ml$/u.test(changedPath)) {

2972+

return GITHUB_YAML_PINNING_GUARD_TEST_TARGETS;

2973+

}

2974+

if (/^\.github\/actions\/.+\.ya?ml$/u.test(changedPath)) {

2975+

return GITHUB_YAML_PINNING_GUARD_TEST_TARGETS;

2976+

}

2977+

return null;

2978+

}

2979+2980+

function resolveGithubWorkflowOwnerTargets(changedPath) {

2981+

return GITHUB_WORKFLOW_OWNER_TEST_TARGETS.get(changedPath) ?? null;

2982+

}

2983+28172984

function resolveToolingTestTargets(changedPath, cwd = process.cwd()) {

28182985

const explicitTargets =

28192986

TOOLING_SOURCE_TEST_TARGETS.get(changedPath) ??

@@ -2823,15 +2990,19 @@ function resolveToolingTestTargets(changedPath, cwd = process.cwd()) {

28232990

resolveDocsI18nGoTargets(changedPath) ??

28242991

resolveK8sManifestTargets(changedPath) ??

28252992

resolveParallelsToolingTestTargets(changedPath);

2993+

const githubWorkflowOwnerTargets = resolveGithubWorkflowOwnerTargets(changedPath);

2994+

const githubYamlGuardTargets = resolveGithubYamlGuardTargets(changedPath);

28262995

const conventionalTargets = resolveConventionalToolingTestTargets(changedPath, cwd);

2827-

if (explicitTargets && conventionalTargets) {

2828-

return uniqueOrdered([...explicitTargets, ...conventionalTargets]);

2996+

const targets = [

2997+

...(explicitTargets ?? []),

2998+

...(githubWorkflowOwnerTargets ?? []),

2999+

...(githubYamlGuardTargets ?? []),

3000+

...(conventionalTargets ?? []),

3001+

];

3002+

if (targets.length > 0) {

3003+

return uniqueOrdered(targets);

28293004

}

2830-

return (

2831-

explicitTargets ??

2832-

conventionalTargets ??

2833-

(isToolingScriptPath(changedPath) ? [TOOLING_VITEST_CONFIG] : null)

2834-

);

3005+

return isToolingScriptPath(changedPath) ? [TOOLING_VITEST_CONFIG] : null;

28353006

}

2836300728373008

function shouldUseBroadChangedTargets(env = process.env) {