fix: harden token pools and CPA export

This commit is contained in:
github-actions[bot]
2026-07-14 13:43:54 +00:00
parent 6f799e19ce
commit 286a0f1734
11 changed files with 210 additions and 767 deletions
-34
View File
@@ -1,34 +0,0 @@
name: Temporary audit fixes
on:
workflow_dispatch:
push:
branches: [main]
issues:
types: [edited, opened, reopened]
permissions:
contents: write
jobs:
apply:
if: github.event_name == 'workflow_dispatch' || github.event_name == 'push' || github.event.issue.number == 7
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 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"
else
git commit -m "fix: harden token pools and CPA export"
git push
fi