# ⚖️ Twin Balance Check # NOTE: 此文件由 Agent PR 创建,可能需要手动合并(SkyEye R5 限制) name: ⚖️ Twin Balance Check on: push: branches: [main] paths: - 'exe-engine/**' - 'grid-db/**' workflow_dispatch: permissions: contents: write actions: read jobs: balance-check: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Run Twin Balance Check run: node scripts/agents/twin-balance-workflow.js - name: Commit Results run: | git config user.name "铸渊 (AG-ZY-01)" git config user.email "zhuyuan@guanghulab.com" git add -A git diff --cached --quiet || git commit -m "⚖️ Twin Balance Check: auto-update" git push || true