-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
61 lines (57 loc) · 1.82 KB
/
action.yml
File metadata and controls
61 lines (57 loc) · 1.82 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: 'Verify Commit Signatures with Auths'
description: 'Verify commit signatures using Auths identity keys'
author: 'auths'
inputs:
allowed-signers:
description: 'Path to allowed_signers file'
required: false
default: '.auths/allowed_signers'
identity-bundle:
description: 'Path to identity bundle JSON file (alternative to allowed-signers)'
required: false
default: ''
identity-bundle-json:
description: 'Raw identity bundle JSON content (written to temp file automatically)'
required: false
default: ''
commit-range:
description: 'Git commit range to verify (defaults to PR commits or push commits)'
required: false
default: ''
auths-version:
description: 'Auths CLI version to use (leave empty for latest)'
required: false
default: ''
fail-on-unsigned:
description: 'Whether to fail the action if unsigned commits are found'
required: false
default: 'true'
skip-merge-commits:
description: 'Whether to skip merge commits during verification'
required: false
default: 'true'
post-pr-comment:
description: 'Post a PR comment with verification results and fix instructions (requires pull-requests: write)'
required: false
default: 'false'
github-token:
description: 'GitHub token used to post the PR comment (required when post-pr-comment is true)'
required: false
default: ''
outputs:
verified:
description: 'Whether all commits were verified successfully'
results:
description: 'JSON array of per-commit verification results'
total:
description: 'Total number of commits checked'
passed:
description: 'Number of commits that passed verification'
failed:
description: 'Number of commits that failed verification'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'shield'
color: 'green'