We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d2013c commit 875bf58Copy full SHA for 875bf58
.github/workflows/mirror_to_gitlab.yml
@@ -0,0 +1,18 @@
1
+name: Mirror to GitLab
2
+
3
+on: [push]
4
5
+jobs:
6
+ mirror-repository:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - uses: actions/checkout@v3
10
+ with:
11
+ fetch-depth: 0
12
+ - name: mirror-repository
13
+ uses: yesolutions/mirror-action@master
14
15
+ REMOTE: ${{ secrets.GITLAB_REPO_SSH }}
16
+ GIT_SSH_PRIVATE_KEY: ${{ secrets.GIT_SSH_PRIVATE_KEY }}
17
+ GIT_SSH_NO_VERIFY_HOST: ${{ secrets.GIT_SSH_NO_VERIFY_HOST }}
18
+ PUSH_ALL_REFS: "false"
0 commit comments