Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/workflows/codex-plugin-scanner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
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
continue-on-error: true
uses: hashgraph-online/hol-codex-plugin-scanner-action@b159c3199f338f4767b225fa748484401ad40563
with:
plugin_dir: "."
mode: scan
fail_on_severity: critical
Loading