From e341d4bdea3b882560dc7e6b8f6d365f35a02685 Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Wed, 15 Jul 2026 00:22:41 +0800 Subject: [PATCH] Delete .github directory --- .../temp-production-review-refactor.yml | 25 ------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/temp-production-review-refactor.yml diff --git a/.github/workflows/temp-production-review-refactor.yml b/.github/workflows/temp-production-review-refactor.yml deleted file mode 100644 index 239d73f..0000000 --- a/.github/workflows/temp-production-review-refactor.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Temporary production review refactor - -on: - workflow_dispatch: - -permissions: - contents: write - -jobs: - apply-production-refactor: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - ref: fix/remaining-review-hardening - - name: Apply production code changes - run: python tools/apply_remaining_review_fixes.py - - name: Commit production changes and remove temporary tools - run: | - git config user.name "github-actions[bot]" - git config user.email "41898282+github-actions[bot]@users.noreply.github.com" - git rm -f tools/apply_remaining_review_fixes.py tools/review_fix_payloads.py - git add -A - git commit -m "fix: resolve remaining production review findings" - git push origin HEAD:fix/remaining-review-hardening