diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..1e1f9f1 --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,22 @@ +name: CI / Mirror + +on: + push: + branches: ["**"] + workflow_dispatch: + +jobs: + sync: + runs-on: ubuntu-latest + name: Sync + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Sync + uses: offensive-vk/auto-repo-sync@v7-beta + with: + target-url: ${{ secrets.TARGET_URL }} + target-username: ${{ secrets.TARGET_USERNAME }} + target-token: ${{ secrets.TARGET_TOKEN }} +