-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
37 lines (33 loc) · 850 Bytes
/
action.yml
File metadata and controls
37 lines (33 loc) · 850 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
33
34
35
36
37
name: 'skill-trust'
description: 'Verify transparency declarations in Agent Skills'
author: 'Raven'
branding:
icon: 'shield'
color: 'green'
inputs:
skill_path:
description: 'Path to the skill directory to verify'
required: true
default: '.'
strict:
description: 'Treat warnings as errors'
required: false
default: 'false'
format:
description: 'Output format: terminal, json, or sarif'
required: false
default: 'terminal'
comment:
description: 'Post results as a PR comment'
required: false
default: 'true'
outputs:
result:
description: 'Verification result: VERIFIED, PARTIAL, UNDECLARED, or INCONSISTENT'
warnings:
description: 'Number of warnings found'
failures:
description: 'Number of failures found'
runs:
using: 'node20'
main: 'dist/action-bundle/index.js'