-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (37 loc) · 1.05 KB
/
mirror.yml
File metadata and controls
43 lines (37 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
---
name: mirror
run-name: Mirror
on:
push:
branches:
- "main"
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
skip-duplicate-actions:
name: Skip Duplicate Actions
runs-on: ubuntu-latest
steps:
- uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
cancel_others: true
concurrent_skipping: never
mirror_to_gitlab:
name: Mirror to GitLab
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Mirror to GitLab
run: |
mkdir mirror && cd mirror
git clone --bare "https://github.com/$GITHUB_REPOSITORY" .
git push --mirror "https://$GITLAB_OWNER:$GITLAB_TOKEN@gitlab.com/$GITLAB_REPOSITORY.git"
env:
GITLAB_REPOSITORY: ${{ secrets.GITLAB_REPOSITORY }}
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
GITLAB_OWNER: ${{ secrets.GITLAB_OWNER }}