From a22a74ebb4c319e02a72863c48b631f15ca2cae4 Mon Sep 17 00:00:00 2001 From: drendog Date: Sat, 24 Jan 2026 03:33:41 +0100 Subject: [PATCH] ci: add mirror push to forgejo --- .github/workflows/mirror-push-to-forgejo.yml | 21 ++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/mirror-push-to-forgejo.yml diff --git a/.github/workflows/mirror-push-to-forgejo.yml b/.github/workflows/mirror-push-to-forgejo.yml new file mode 100644 index 0000000..8027447 --- /dev/null +++ b/.github/workflows/mirror-push-to-forgejo.yml @@ -0,0 +1,21 @@ +name: Push Github -> Forgejo +on: + push: + branches: + - "**" + workflow_dispatch: + +jobs: + push-to-forgejo: + runs-on: ubuntu-latest + steps: + - name: "Checkout" + uses: actions/checkout@v6 + with: + fetch-depth: 0 + - name: "Sync repo" + uses: spyoungtech/mirror-action@master + with: + REMOTE: "https://codeberg.org/waydeer/layer-shika" + GIT_USERNAME: drendog + GIT_PASSWORD: ${{ secrets.FORGEJO_TOKEN }}