blob: 10b5f4d4869873d85e927843d2678fc49b647e2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
name: Mirroring
on: [push, delete]
jobs:
to_gitolite:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v1
- uses: pixta-dev/repository-mirroring-action@v1
with:
target_repo_url:
git@git.c3voc.de:streaming-website.git
ssh_private_key:
${{ secrets.SSH_PRIVATE_KEY }}
|