From f436babd401ad23a2ad2452b99412dde1a111061 Mon Sep 17 00:00:00 2001 From: Dorian Niemiec <166409740+DorianNiemiecSVRJS@users.noreply.github.com> Date: Sat, 20 Apr 2024 12:11:10 +0200 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3059d05 --- /dev/null +++ b/.github/workflows/main.yml @@ -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/create-svrjs-server.git" + GIT_USERNAME: github + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}