Skip to content

Merge pull request #302 from CampingOn/fix/security-path #140

Merge pull request #302 from CampingOn/fix/security-path

Merge pull request #302 from CampingOn/fix/security-path #140

Workflow file for this run

name: Mirror to GitLab
on:
push:
branches:
- main # 미러링할 브랜치
- dev # 추가로 미러링할 브랜치
jobs:
push-to-gitlab:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
with:
fetch-depth: 0 # 모든 히스토리를 가져옴
- name: Push to GitLab
env:
GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }}
run: |
git remote add gitlab ${{ secrets.GITLAB_URL }}
git push gitlab