diff --git a/.github/workflows/sync_project.yml b/.github/workflows/sync_project.yml index b24daa8..935feda 100644 --- a/.github/workflows/sync_project.yml +++ b/.github/workflows/sync_project.yml @@ -6,44 +6,44 @@ on: # branches: # - master schedule: - - cron: '0 16 * * *' + - cron: '20 20 * * *' jobs: - mirror_to_bitbucket: + mirror_to_gitlab: runs-on: ubuntu-latest steps: - name: 'Checkout' uses: actions/checkout@v3 - - name: 'Mirror to bitbucket' + - name: 'Mirror to gitlab' uses: pixta-dev/repository-mirroring-action@v1 with: target_repo_url: - git@bitbucket.org:fscarmen/test.git + git@gitlab.com:fscarmen/test.git ssh_private_key: ${{ secrets.PRIVATE_KEY }} - mirror_to_gitea: + mirror_to_bitbucket: runs-on: ubuntu-latest steps: - name: 'Checkout' uses: actions/checkout@v3 - - name: 'Mirror to gitea' + - name: 'Mirror to bitbucket' uses: pixta-dev/repository-mirroring-action@v1 with: target_repo_url: - git@try.gitea.io:fscarmen/test.git + git@bitbucket.org:fscarmen/test.git ssh_private_key: ${{ secrets.PRIVATE_KEY }} -# -# mirror_to_gitlab: + +# mirror_to_gitee: # runs-on: ubuntu-latest # steps: # - name: 'Checkout' -# uses: actions/checkout@v1 -# - name: 'Mirror to gitlab' +# uses: actions/checkout@v3 +# - name: 'Mirror to gitee' # uses: pixta-dev/repository-mirroring-action@v1 # with: # target_repo_url: -# git@gitlab.com:fscarmen/test.git +# git@gitee.com:fscarmen/test.git # ssh_private_key: # ${{ secrets.PRIVATE_KEY }}