From 47cddd61ea1ee1c1ca579c5516f9d2c99ce4619a Mon Sep 17 00:00:00 2001 From: Sam Therapy Date: Tue, 7 Mar 2023 19:12:19 +0100 Subject: [PATCH] Add push action --- .github/workflows/push.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/push.yml diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..b850a1f --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,17 @@ +name: Mirror Push + +on: [push] + +jobs: + push: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: mirror + uses: yesolutions/mirror-action@master + with: + REMOTE: 'https://git.froth.zone/sam/scoop.git' + GIT_USERNAME: oauth2 + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}