Prepare v0.14 Codex plugin package #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: HOL Plugin Scanner | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| security-events: write | |
| jobs: | |
| scan: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 | |
| - name: Validate v0.14 wrapper contract | |
| run: sh scripts/validate-plugin.sh | |
| - name: HOL Plugin Scanner | |
| uses: hashgraph-online/ai-plugin-scanner-action@d38d84308e670972f6534739dbc193b2c2dcc163 | |
| with: | |
| plugin_dir: "." | |
| mode: scan | |
| min_score: 80 | |
| fail_on_severity: high | |
| format: sarif | |
| upload_sarif: true |