diff options
author | Valentin Popov <valentin@popov.link> | 2024-05-29 16:18:49 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-05-29 16:18:49 +0300 |
commit | 7df1298b99522b30994e91bec8c0c2b4a4c103af (patch) | |
tree | ccdcabe0fcafaae66b9169234f0218afdb5e859e /.github | |
parent | b51f0f872dc1ea1b30f8369cd3d38c4d6dcaed3c (diff) | |
download | gitlab-duplicator-master.tar.xz gitlab-duplicator-master.zip |
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/main.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..c5570e7 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,17 @@ +name: Workflow + +on: [push] + +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://git.popov.link/gitlab-duplicator.git' + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} |