mirror.yml 410 B

1234567891011121314151617
  1. name: 'GitHub Actions Mirror'
  2. on: [push]
  3. jobs:
  4. mirror_to_gitee:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - name: 'Checkout'
  8. uses: actions/checkout@v1
  9. - name: 'Mirror to gitee'
  10. uses: pixta-dev/repository-mirroring-action@v1
  11. with:
  12. target_repo_url:
  13. git@gitee.com:hg-code/thinkphp-apidoc.git
  14. ssh_private_key:
  15. ${{ secrets.GITEE_KEY }}