From 0e1d4804edc4fcbae52074819574d354ad9f03d2 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sun, 31 Aug 2025 17:52:35 -0700 Subject: [PATCH] Delete workflows/repo-mirror.yml --- workflows/repo-mirror.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 workflows/repo-mirror.yml diff --git a/workflows/repo-mirror.yml b/workflows/repo-mirror.yml deleted file mode 100644 index 54d10b8..0000000 --- a/workflows/repo-mirror.yml +++ /dev/null @@ -1,28 +0,0 @@ -on: - workflow_call: - inputs: - repo: - required: true - type: string -jobs: - mirror: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - run: | - shopt -s dotglob extglob - rm -rf !(.git|.github) - - run: | - u='${{ inputs.repo }}' - curl -fsSL -o src.tgz https://codeload.github.com/$u/tar.gz/master - tar -xzf src.tgz - d=$(tar -tzf src.tgz|head -1|cut -d/ -f1) - shopt -s dotglob extglob - mv "$d"/!(".github") . - rm -rf "$d" src.tgz - - run: | - git config user.name "github-actions" - git config user.email "github-actions@github.com" - git add . - git commit -m "This build was committed by a bot." - git push