diff --git a/.github/workflows/codex-plugin-scanner.yml b/.github/workflows/codex-plugin-scanner.yml new file mode 100644 index 0000000..529b604 --- /dev/null +++ b/.github/workflows/codex-plugin-scanner.yml @@ -0,0 +1,34 @@ +name: Codex Plugin Scanner CI + +on: + push: + branches: [main] + paths: + - '.codex-plugin/**' + - 'skills/**' + - '.mcp.json' + pull_request: + branches: [main] + paths: + - '.codex-plugin/**' + - 'skills/**' + - '.mcp.json' + +permissions: + contents: read + +concurrency: + group: scanner-${{ github.ref }} + cancel-in-progress: true + +jobs: + scan: + name: Plugin Scanner + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - name: Checkout + uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.2.2 + + - name: Run scanner + uses: hashgraph-online/hol-codex-plugin-scanner-action@40d95e49abdd8aeb34b534461a9fa4f96cdd4d7c # v1 \ No newline at end of file