fix(auth): add missing GUI CPA export hook

This commit is contained in:
github-actions[bot]
2026-07-14 12:44:32 +00:00
parent 71ae1c4805
commit fff1df0ecf
2 changed files with 0 additions and 59 deletions
-34
View File
@@ -1,34 +0,0 @@
name: Temporary GUI CPA hook patch
on:
issues:
types:
- edited
permissions:
contents: write
jobs:
apply-upgrade:
if: github.event.issue.number == 7
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
- name: Apply GUI CPA hook
run: python tools/apply_gui_cpa_hook.py
- name: Commit patch and clean temporary files
shell: bash
run: |
rm -f tools/apply_gui_cpa_hook.py
rm -f .github/workflows/temp-gui-cpa-hook.yml
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add grok_register_ttk.py tools/apply_gui_cpa_hook.py .github/workflows/temp-gui-cpa-hook.yml
git commit -m "fix(auth): add missing GUI CPA export hook"
git push origin HEAD:main