zhizhi/.github/workflows/twin-balance.yml

28 lines
787 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ⚖️ 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