From 9541b41742043d25c961cc82047a46ff487e520a Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Tue, 14 Jul 2026 22:49:17 +0800 Subject: [PATCH] fix: run review patch GUI preprocessor --- .github/workflows/temp-review-fixes.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/temp-review-fixes.yml b/.github/workflows/temp-review-fixes.yml index 9ca0243..d5a5815 100644 --- a/.github/workflows/temp-review-fixes.yml +++ b/.github/workflows/temp-review-fixes.yml @@ -11,13 +11,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Repair review patch GUI replacement + run: python tools/fix_review_patch_gui_replace.py - name: Apply review fixes run: python tools/apply_review_fixes.py - name: Commit and cleanup 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_review_fixes.py .github/workflows/temp-review-fixes.yml + git rm -f tools/apply_review_fixes.py tools/fix_review_patch_gui_replace.py .github/workflows/temp-review-fixes.yml git add -A if git diff --cached --quiet; then echo "No changes to commit"