diff options
author | Andreas Hubel | 2020-12-23 16:17:59 +0100 |
---|---|---|
committer | Andreas Hubel | 2020-12-23 17:44:38 +0100 |
commit | 66a597e660285277824cd5483354f05deb0a5014 (patch) | |
tree | 248eea2095f1068c1712dcc407d670bba640cf5b /.github/workflows | |
parent | 7499c5320d0ca0e42d7fb2c3a6e64a1b988c4427 (diff) |
Create mirroring.yml
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/mirroring.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/mirroring.yml b/.github/workflows/mirroring.yml new file mode 100644 index 0000000..10b5f4d --- /dev/null +++ b/.github/workflows/mirroring.yml @@ -0,0 +1,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 }} |