From 0513c3a1288412caa49164008300753dc1033f99 Mon Sep 17 00:00:00 2001 From: Zhe Fang Date: Sat, 10 Jan 2026 13:22:32 -0500 Subject: [PATCH] Add GitHub Actions workflow for plugin registry check --- .github/workflows/plugin-registry-check.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/plugin-registry-check.yml diff --git a/.github/workflows/plugin-registry-check.yml b/.github/workflows/plugin-registry-check.yml new file mode 100644 index 0000000..e89fb66 --- /dev/null +++ b/.github/workflows/plugin-registry-check.yml @@ -0,0 +1,20 @@ +name: Plugin Registry Check + +on: + pull_request: + paths: + - 'Community/plugins-registry.json' + +jobs: + check-collision: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Run Hash Collision Check + run: node Community/scripts/check-hash-collision.js