| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- name: GitHub Actions Mirror
- on:
- workflow_dispatch:
- # push:
- # branches:
- # - master
- schedule:
- - cron: '20 20 * * *'
- jobs:
- mirror_to_gitlab:
- runs-on: ubuntu-latest
- steps:
- - name: 'Checkout'
- uses: actions/[email protected]
- with:
- fetch-depth: 0
- - name: 'Mirror to gitlab'
- uses: pixta-dev/[email protected]
- with:
- target_repo_url:
- [email protected]:${{ github.repository }}.git
- ssh_private_key:
- ${{ secrets.PRIVATE_KEY }}
- mirror_to_gitlab_project:
- runs-on: ubuntu-latest
- steps:
- - name: 'Checkout'
- uses: actions/[email protected]
- with:
- fetch-depth: 0
- - name: 'Mirror to gitlab'
- uses: pixta-dev/[email protected]
- with:
- target_repo_url:
- [email protected]:ProjectWARP/warp-script.git
- ssh_private_key:
- ${{ secrets.PRIVATE_KEY }}
- mirror_to_bitbucket:
- runs-on: ubuntu-latest
- steps:
- - name: 'Checkout'
- uses: actions/[email protected]
- with:
- fetch-depth: 0
- - name: 'Mirror to bitbucket'
- uses: pixta-dev/[email protected]
- with:
- target_repo_url:
- [email protected]:${{ github.repository }}.git
- ssh_private_key:
- ${{ secrets.PRIVATE_KEY }}
|