-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (27 loc) · 1.07 KB
/
Copy pathaction.yml
File metadata and controls
31 lines (27 loc) · 1.07 KB
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
name: 'Verify by Born14'
description: 'Posts a PR change receipt showing what was checked, what was found, and what was not checked. Covers Kubernetes, Dockerfile, GitHub Actions, and one Terraform shape (warning-only).'
author: 'Born14'
branding:
icon: 'file-text'
color: 'orange'
inputs:
token:
description: 'GitHub token with pull-requests: write and contents: read'
required: false
default: ${{ github.token }}
scan-root:
description: 'Directory to scan. Default is the repo root.'
required: false
default: '.'
fail-on-findings:
description: 'When true, the workflow exits non-zero if the receipt has any non-suppressed findings. Suppressions declared in-band with `# verify:ignore <SHAPE-ID> reason:"..."` comments do not trigger failure. Default false; the receipt is informational unless this is set.'
required: false
default: 'false'
outputs:
result:
description: 'CLEAR or N FINDINGS, mirroring the receipt'
digest:
description: 'SHA-256 packet digest of the receipt'
runs:
using: 'node24'
main: 'dist/action/index.cjs'