From 401db42530d628fad16d5f22a1f38f7028b9b740 Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Thu, 27 Nov 2025 10:24:32 -0800 Subject: [PATCH] Delete: Cleanup workflow no longer needed --- .github/workflows/cleanup-tests.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/cleanup-tests.yml diff --git a/.github/workflows/cleanup-tests.yml b/.github/workflows/cleanup-tests.yml deleted file mode 100644 index 1d208df..0000000 --- a/.github/workflows/cleanup-tests.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: Cleanup Stale Tests - -on: - workflow_dispatch: - -jobs: - cleanup: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Set up Node.js - uses: actions/setup-node@v4 - with: - node-version: '20' - - - name: Run cleanup script - run: node scripts/cleanup-results.js - - - name: Commit and push if changed - run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git add results.json - git diff --staged --quiet || (git commit -m "Chore: Remove stale test results" && git push)