From 2ea9078f097d8490d76e167df1a68ef320111997 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Fri, 16 Jan 2026 22:09:04 +0000 Subject: [PATCH] Create mirror.yml for repository mirroring Add GitHub Actions workflow to mirror repository. --- .github/workflows/mirror.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/mirror.yml diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..d5a085b --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,26 @@ +name: mirror-repository + +on: + push: + branches: + - '**' + workflow_dispatch: + +jobs: + mirror: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Mirror repository + uses: yesolutions/mirror-action@v0.7.0 + with: + REMOTE_NAME: git + REMOTE: https://git.wardcrew.com/git/repoforge.git + GIT_USERNAME: git + GIT_PASSWORD: 4wHhnUX7n7pVaFZi + PUSH_ALL_REFS: true + GIT_PUSH_ARGS: --tags --force --prune