Sync to Mirror Repositories #1099
  
    
      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: Sync to Mirror Repositories | |
| on: | |
| workflow_run: | |
| workflows: ["Build repo.json", "Scheduled Build and Release"] | |
| types: | |
| - completed # 当工作流完成时触发 | |
| workflow_dispatch: # 允许手动触发 | |
| jobs: | |
| sync: | |
| if: github.repository_owner == 'babalae' | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: product | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # 获取完整的git历史记录 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Fetch all branches | |
| run: | | |
| git fetch --all | |
| git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote" 2>/dev/null || true; done | |
| - name: Set up Git | |
| run: | | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
| - name: Sync to CNB | |
| run: | | |
| git remote add cnb https://cnb.cool/bettergi/bettergi-scripts-list.git || true | |
| git push https://cnb:${{ secrets.CNB_TOKEN }}@cnb.cool/bettergi/bettergi-scripts-list.git --all --force | |
| continue-on-error: true | |
| - name: Sync to GitCode | |
| run: | | |
| git remote add gitcode https://gitcode.com/huiyadanli/bettergi-scripts-list.git || true | |
| git push https://huiyadanli:${{ secrets.GITCODE_TOKEN }}@gitcode.com/huiyadanli/bettergi-scripts-list.git --all --force | |
| continue-on-error: true | |
| - name: Sync to Gitee | |
| run: | | |
| git remote add gitee https://gitee.com/babalae/bettergi-scripts-list.git || true | |
| git push https://huiyadanli:${{ secrets.GITEE_TOKEN }}@gitee.com/babalae/bettergi-scripts-list.git --all --force | |
| continue-on-error: true | |
| - name: Report sync status | |
| if: always() | |
| run: | | |
| echo "Sync operation completed. Check individual steps for any errors." |