From e4e67c7d7a03bfcd744eae806d1a52fa4d64a4d3 Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Tue, 14 Jul 2026 22:14:57 +0800 Subject: [PATCH] chore: add temporary review fix workflow --- .github/workflows/temp-review-fixes.yml | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/temp-review-fixes.yml diff --git a/.github/workflows/temp-review-fixes.yml b/.github/workflows/temp-review-fixes.yml new file mode 100644 index 0000000..9ca0243 --- /dev/null +++ b/.github/workflows/temp-review-fixes.yml @@ -0,0 +1,27 @@ +name: Temporary review fixes + +on: + workflow_dispatch: + +permissions: + contents: write + +jobs: + apply: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Apply review fixes + run: python tools/apply_review_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_review_fixes.py .github/workflows/temp-review-fixes.yml + git add -A + if git diff --cached --quiet; then + echo "No changes to commit" + else + git commit -m "fix: address review follow-up hardening" + git push + fi