mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 14:33:56 -05:00
19 lines
428 B
YAML
19 lines
428 B
YAML
name: "git-mirror"
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
jobs:
|
|
gitlab-sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: yesolutions/mirror-action@master
|
|
with:
|
|
REMOTE: 'https://gitlab.com/alyraffauf/nixcfg.git'
|
|
GIT_USERNAME: alyraffauf
|
|
GIT_PASSWORD: ${{ secrets.GITLAB_PASSWORD }}
|