fix: run audit patch escape preprocessor

This commit is contained in:
Aaron Liang
2026-07-14 21:43:47 +08:00
parent 163ac568b0
commit 6f799e19ce
+3 -1
View File
@@ -16,13 +16,15 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Repair audit patch escapes
run: python tools/fix_audit_patch_escapes.py
- name: Apply audit fixes - name: Apply audit fixes
run: python tools/apply_audit_fixes.py run: python tools/apply_audit_fixes.py
- name: Commit and cleanup - name: Commit and cleanup
run: | run: |
git config user.name "github-actions[bot]" git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com" 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 git add -A
if git diff --cached --quiet; then if git diff --cached --quiet; then
echo "No changes to commit" echo "No changes to commit"