From 0c62a414c9d8d9877742a63796524cd7479f48bd Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sun, 28 Sep 2025 10:34:05 -0700 Subject: [PATCH] Delete mirr.yml --- .github/workflows/mirr.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/mirr.yml diff --git a/.github/workflows/mirr.yml b/.github/workflows/mirr.yml deleted file mode 100644 index f08c608..0000000 --- a/.github/workflows/mirr.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Sync with Upstream - -on: - workflow_dispatch: - -jobs: - sync: - runs-on: ubuntu-latest - permissions: - contents: write - - steps: - - name: Checkout target repository - uses: actions/checkout@v4 - - - name: Sync, preserving directories - run: | - set -e - git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" - - git remote add upstream https://github.com/multipleof4/test.git - git fetch upstream master - git reset --hard upstream/master - git rm -r --ignore-unmatch functions .github/workflows - git checkout ORIG_HEAD -- functions .github/workflows - - git add -A - git diff-index --quiet HEAD || git commit -m "chore: Sync from multipleof4/sune" && git push --force