[fix]修改一些示例中多次点击操作时报错的问题 #1819
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: Auto Sync | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'dependabot/**' | |
| jobs: | |
| mirror_to_gitee: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v2 | |
| with: | |
| fetch-depth: 0 | |
| - name: 'Mirror to gitee' | |
| uses: pixta-dev/repository-mirroring-action@v1 | |
| with: | |
| target_repo_url: | |
| ${{ secrets.GITEE_URL }} | |
| ssh_private_key: | |
| ${{ secrets.GITEE_KEY }} |