Ch010 H5: new 17k chars (collections 통합 데모 exchange_v4 200줄 — v3→v4 진… #64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: 자경단 미러 동기화 | |
| on: | |
| push: | |
| branches: ["**"] | |
| tags: ["**"] | |
| schedule: | |
| - cron: "0 */6 * * *" | |
| workflow_dispatch: {} | |
| jobs: | |
| sync: | |
| name: 원본 → 자경단 미러 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: push --mirror to catguard-team | |
| env: | |
| MIRROR: catguard-team/react-flask-ai-stack | |
| TOKEN: ${{ secrets.MIRROR_PAT }} | |
| run: | | |
| set -euo pipefail | |
| git remote add mirror "https://x-access-token:${TOKEN}@github.com/${MIRROR}.git" | |
| git push --mirror mirror |