We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd695d9 commit 44e1d85Copy full SHA for 44e1d85
1 file changed
.github/workflows/gitlab_sync.yml
@@ -0,0 +1,22 @@
1
+name: GitlabSync
2
+
3
+on:
4
+ - push
5
+ - delete
6
7
+jobs:
8
+ sync:
9
+ runs-on: ubuntu-latest
10
+ name: Git Repo Sync
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ with:
14
+ fetch-depth: 0
15
+ - uses: action-pack/gitlab-sync@v3.03
16
17
+ # GitLab repo URL
18
+ url: ${{ secrets.GITLAB_TARGET_URL }}
19
+ # GitLab username
20
+ username: ${{ secrets.GITLAB_TARGET_USERNAME }}
21
+ # GitLab token
22
+ token: ${{ secrets.GITLAB_TARGET_TOKEN }}
0 commit comments