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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
量子位
T
Tailwind CSS Blog
Vercel News
Vercel News
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Engineering at Meta
Engineering at Meta
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
D
Docker
博客园_首页
P
Proofpoint News Feed
月光博客
月光博客
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
腾讯CDC
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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
feat(ci): autoscrub dependency lockfile-only PR changes (...
RomneyDa · 2026-05-30 · via Recent Commits to openclaw:main

@@ -14,20 +14,96 @@ concurrency:

1414

cancel-in-progress: true

15151616

jobs:

17-

dependency-guard:

17+

dependency-guard-detect:

1818

if: ${{ !github.event.pull_request.draft }}

1919

runs-on: ubuntu-24.04

2020

timeout-minutes: 5

21+

outputs:

22+

autoscrub: ${{ steps.guard.outputs.autoscrub }}

23+

autoscrub-owner: ${{ steps.guard.outputs.autoscrub-owner }}

24+

autoscrub-repository: ${{ steps.guard.outputs.autoscrub-repository }}

25+

steps:

26+

- name: Check out trusted base workflow scripts

27+

uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

28+

with:

29+

ref: ${{ github.event.pull_request.base.sha }}

30+

persist-credentials: false

31+32+

- name: Detect dependency changes

33+

id: guard

34+

env:

35+

GITHUB_TOKEN: ${{ github.token }}

36+

OPENCLAW_DEPENDENCY_GUARD_MODE: detect

37+

OPENCLAW_SECURITY_APPROVERS: vincentkoc,steipete,joshavant

38+

OPENCLAW_SECURITY_TEAM_SLUG: openclaw-secops

39+

run: node scripts/github/dependency-guard.mjs

40+41+

dependency-guard-autoscrub:

42+

if: ${{ !github.event.pull_request.draft && needs.dependency-guard-detect.outputs.autoscrub == 'true' }}

43+

needs: dependency-guard-detect

44+

runs-on: ubuntu-24.04

45+

timeout-minutes: 5

46+

permissions:

47+

contents: read

48+

issues: write

49+

pull-requests: read

50+

steps:

51+

- name: Check out trusted base workflow scripts

52+

uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

53+

with:

54+

ref: ${{ github.event.pull_request.base.sha }}

55+

persist-credentials: false

56+57+

- name: Create autoscrub app token

58+

id: app-token

59+

continue-on-error: true

60+

uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1

61+

with:

62+

app-id: "2729701"

63+

private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}

64+

owner: ${{ needs.dependency-guard-detect.outputs.autoscrub-owner }}

65+

repositories: ${{ needs.dependency-guard-detect.outputs.autoscrub-repository }}

66+

permission-contents: write

67+68+

- name: Create fallback autoscrub app token

69+

id: app-token-fallback

70+

continue-on-error: true

71+

if: steps.app-token.outcome == 'failure'

72+

uses: actions/create-github-app-token@1b10c78c7865c340bc4f6099eb2f838309f1e8c3 # v3.1.1

73+

with:

74+

app-id: "2971289"

75+

private-key: ${{ secrets.GH_APP_PRIVATE_KEY_FALLBACK }}

76+

owner: ${{ needs.dependency-guard-detect.outputs.autoscrub-owner }}

77+

repositories: ${{ needs.dependency-guard-detect.outputs.autoscrub-repository }}

78+

permission-contents: write

79+80+

- name: Remove package lockfile changes

81+

env:

82+

GITHUB_TOKEN: ${{ github.token }}

83+

OPENCLAW_DEPENDENCY_GUARD_AUTOSCRUB_TOKEN: ${{ steps.app-token.outputs.token || steps.app-token-fallback.outputs.token }}

84+

OPENCLAW_DEPENDENCY_GUARD_MODE: autoscrub

85+

OPENCLAW_SECURITY_APPROVERS: vincentkoc,steipete,joshavant

86+

OPENCLAW_SECURITY_TEAM_SLUG: openclaw-secops

87+

run: node scripts/github/dependency-guard.mjs

88+89+

dependency-guard:

90+

if: ${{ !github.event.pull_request.draft && always() }}

91+

needs:

92+

- dependency-guard-detect

93+

- dependency-guard-autoscrub

94+

runs-on: ubuntu-24.04

95+

timeout-minutes: 5

2196

steps:

2297

- name: Check out trusted base workflow scripts

2398

uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

2499

with:

25100

ref: ${{ github.event.pull_request.base.sha }}

26101

persist-credentials: false

2710228-

- name: Label, comment, and guard dependency changes

103+

- name: Enforce dependency guard

29104

env:

30105

GITHUB_TOKEN: ${{ github.token }}

106+

OPENCLAW_DEPENDENCY_GUARD_MODE: enforce

31107

OPENCLAW_SECURITY_APPROVERS: vincentkoc,steipete,joshavant

32108

OPENCLAW_SECURITY_TEAM_SLUG: openclaw-secops

33109

run: node scripts/github/dependency-guard.mjs