Add mirror action
This commit is contained in:
parent
8c5575a4b0
commit
9c6e9cca0c
1 changed files with 42 additions and 0 deletions
42
.github/workflows/mirror.yml
vendored
Normal file
42
.github/workflows/mirror.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
# This is a basic workflow that is manually triggered
|
||||||
|
|
||||||
|
name: Mirror repo
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
repo_name: dotfiles
|
||||||
|
mirror:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: mirror in gitlab
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://gitlab.com/Anas-Elgarhy/{{repo_name}}.git'
|
||||||
|
GIT_USERNAME: Anas-Elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.GITLAP_TOKEN }}
|
||||||
|
|
||||||
|
- name: mirror in bitbucket
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://anas_elgarhy@bitbucket.org/anas_elgarhy/{{repo_name}}.git'
|
||||||
|
REMOTE_NAME: bitbucket
|
||||||
|
GIT_USERNAME: anas_elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.BITBUCKET_TOKEN }}
|
||||||
|
|
||||||
|
- name: mirror in codeberg
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- uses: yesolutions/mirror-action@master
|
||||||
|
with:
|
||||||
|
REMOTE: 'https://codeberg.org/anas-elgarhy/{{repo_name}}.git'
|
||||||
|
REMOTE_NAME: codeberg
|
||||||
|
GIT_USERNAME: anas-elgarhy
|
||||||
|
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }}
|
Loading…
Reference in a new issue