2024-09-07 07:42:42 +02:00
|
|
|
# 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:
|
2024-09-07 07:44:25 +02:00
|
|
|
REMOTE: "https://git.svrjs.org/svrjs/svrjs-nextjs-website.git"
|
2024-09-07 07:42:42 +02:00
|
|
|
GIT_USERNAME: github-mirror
|
|
|
|
GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
|