zhizhi/.github/workflows/readme-update.yml

24 lines
690 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.

# 📡 README Auto-Update
# NOTE: 此文件由 Agent PR 创建可能需要手动合并SkyEye R5 限制)
name: 📡 README Auto-Update
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate README
run: node scripts/agents/readme-generator.js --auto
- name: Commit
run: |
git config user.name "铸渊 (AG-ZY-01)"
git config user.email "zhuyuan@guanghulab.com"
git add README.md
git diff --cached --quiet || git commit -m "📡 README auto-update"
git push || true