From 2a854e13ee598fd0f31d8e04e09cd852840e1d5a Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Wed, 15 Jul 2026 00:08:53 +0800 Subject: [PATCH] chore: add temporary remaining review workflow --- .../workflows/temp-remaining-review-fixes.yml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/temp-remaining-review-fixes.yml diff --git a/.github/workflows/temp-remaining-review-fixes.yml b/.github/workflows/temp-remaining-review-fixes.yml new file mode 100644 index 0000000..30e0cfe --- /dev/null +++ b/.github/workflows/temp-remaining-review-fixes.yml @@ -0,0 +1,30 @@ +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