forked from hashgraph-online/awesome-codex-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (32 loc) · 887 Bytes
/
Copy pathscanner-example-strict.yml
File metadata and controls
32 lines (32 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: HOL Plugin Scanner — Strict
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
permissions:
contents: read
security-events: write
jobs:
scan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: HOL Plugin Scanner
uses: hashgraph-online/ai-plugin-scanner-action@v1
with:
plugin_dir: "."
mode: scan
min_score: 90
fail_on_severity: medium
format: sarif
upload_sarif: true
- name: Submit to Registry if Eligible
if: github.ref == 'refs/heads/main'
uses: hashgraph-online/ai-plugin-scanner-action@v1
with:
plugin_dir: "."
mode: submit
min_score: 90
submission_enabled: true
submission_score_threshold: 90