refactor: harden registration runtime

This commit is contained in:
github-actions[bot]
2026-07-14 16:17:34 +00:00
parent 619d1fa399
commit bb02b33c48
4 changed files with 44 additions and 185 deletions
@@ -1,30 +0,0 @@
name: Temporary remaining review fixes
on:
push:
branches: [main]
paths:
- tools/apply_remaining_review_fixes.py
permissions:
contents: write
jobs:
apply:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Apply remaining review fixes
run: python tools/apply_remaining_review_fixes.py
- name: Commit fixes and remove temporary files
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_remaining_review_fixes.py .github/workflows/temp-remaining-review-fixes.yml
git add -A
if git diff --cached --quiet; then
echo "No changes to commit"
else
git commit -m "refactor: harden registration runtime"
git push
fi