From 9b66d7aedb9615bdc614601d7bb72ff8d267f346 Mon Sep 17 00:00:00 2001 From: "internet-dot[bot]" Date: Mon, 6 Apr 2026 15:34:35 +0000 Subject: [PATCH 1/2] ci: add codex-plugin-scanner GitHub Action --- .github/workflows/codex-plugin-scanner.yml | 36 ++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/codex-plugin-scanner.yml diff --git a/.github/workflows/codex-plugin-scanner.yml b/.github/workflows/codex-plugin-scanner.yml new file mode 100644 index 0000000..fcc9c8b --- /dev/null +++ b/.github/workflows/codex-plugin-scanner.yml @@ -0,0 +1,36 @@ +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 + with: + args: scan --fail-on critical From 58e103522dab6c1d46be54df68fa300807ea5706 Mon Sep 17 00:00:00 2001 From: "internet-dot[bot]" Date: Mon, 6 Apr 2026 21:35:29 +0000 Subject: [PATCH 2/2] fix: use correct scanner action repo and remove custom args --- .github/workflows/codex-plugin-scanner.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/codex-plugin-scanner.yml b/.github/workflows/codex-plugin-scanner.yml index fcc9c8b..529b604 100644 --- a/.github/workflows/codex-plugin-scanner.yml +++ b/.github/workflows/codex-plugin-scanner.yml @@ -31,6 +31,4 @@ jobs: uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.2.2 - name: Run scanner - uses: hashgraph-online/hol-codex-plugin-scanner-action@40d95e49abdd8aeb34b534461a9fa4f96cdd4d7c # v1 - with: - args: scan --fail-on critical + uses: hashgraph-online/hol-codex-plugin-scanner-action@40d95e49abdd8aeb34b534461a9fa4f96cdd4d7c # v1 \ No newline at end of file