From 6f799e19ce93e41662d41c01ab8bbdb2b821c261 Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Tue, 14 Jul 2026 21:43:47 +0800 Subject: [PATCH] fix: run audit patch escape preprocessor --- .github/workflows/temp-audit-fixes.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/temp-audit-fixes.yml b/.github/workflows/temp-audit-fixes.yml index 4a0e66f..cacd5d6 100644 --- a/.github/workflows/temp-audit-fixes.yml +++ b/.github/workflows/temp-audit-fixes.yml @@ -16,13 +16,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Repair audit patch escapes + run: python tools/fix_audit_patch_escapes.py - name: Apply audit fixes run: python tools/apply_audit_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_audit_fixes.py .github/workflows/temp-audit-fixes.yml + git rm -f tools/apply_audit_fixes.py tools/fix_audit_patch_escapes.py .github/workflows/temp-audit-fixes.yml git add -A if git diff --cached --quiet; then echo "No changes to commit"