From 6f278fc927b77bfe8f4f53761754070c2c9eac2f Mon Sep 17 00:00:00 2001 From: Aaron Liang <76561968+AaronL725@users.noreply.github.com> Date: Wed, 15 Jul 2026 01:25:48 +0800 Subject: [PATCH] chore: run temporary refactor inventory --- .github/workflows/temp-refactor-inventory.yml | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/temp-refactor-inventory.yml diff --git a/.github/workflows/temp-refactor-inventory.yml b/.github/workflows/temp-refactor-inventory.yml new file mode 100644 index 0000000..d80da14 --- /dev/null +++ b/.github/workflows/temp-refactor-inventory.yml @@ -0,0 +1,26 @@ +name: Temporary refactor inventory + +on: + push: + paths: + - tools/build_refactor_inventory.py + - .github/workflows/temp-refactor-inventory.yml + workflow_dispatch: + +permissions: + contents: write + +jobs: + inventory: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Build AST inventory + run: python tools/build_refactor_inventory.py + - name: Commit inventory + run: | + git config user.name "github-actions[bot]" + git config user.email "41898282+github-actions[bot]@users.noreply.github.com" + git add refactor_inventory.json + git commit -m "chore: generate temporary refactor inventory" + git push