17 lines
429 B
YAML
17 lines
429 B
YAML
|
name: Mirror the repo to gitlab
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
gitlab-mirror:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: mirror in gitlab
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
fetch-depth: 0
|
||
|
- uses: yesolutions/mirror-action@v0.6.0
|
||
|
with:
|
||
|
REMOTE: 'https://gitlab.com/archy-linux/archy-slstatus.git'
|
||
|
GIT_USERNAME: Anas-Elgarhy
|
||
|
GIT_PASSWORD: ${{ secrets.GITLAP_TOKEN }}
|