ci: create a GitHub action which mirrors contents of the repository
Some checks failed
Repo sync GitHub -> SVR.JS Git server / svrjsgit (push) Failing after 4s
Some checks failed
Repo sync GitHub -> SVR.JS Git server / svrjsgit (push) Failing after 4s
This commit is contained in:
parent
847c57ea20
commit
d4887d55dc
1 changed files with 19 additions and 0 deletions
19
.github/workflows/main.yml
vendored
Normal file
19
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Sync repo to the Codeberg mirror
|
||||
name: Repo sync GitHub -> SVR.JS Git server
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- '**'
|
||||
|
||||
jobs:
|
||||
svrjsgit:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- uses: spyoungtech/mirror-action@v0.5.1
|
||||
with:
|
||||
REMOTE: "https://git.svrjs.org/mernmail/mernmail-svrjs-mod.git"
|
||||
GIT_USERNAME: github-mirror
|
||||
GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
|
Loading…
Reference in a new issue