-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
44 lines (41 loc) · 1.57 KB
/
Copy pathaction.yml
File metadata and controls
44 lines (41 loc) · 1.57 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
name: 'PatchGate Review-Readiness Gate'
description: 'Deterministic pull-request reviewability evaluator and policy verification gate'
author: 'The PatchGate Authors'
branding:
icon: 'shield'
color: 'blue'
inputs:
fail-on:
description: 'Status level that causes the action step to fail. Options: never, blocked, human_review_required, evidence_missing, policy_ambiguous.'
required: false
default: 'blocked'
github-token:
description: 'GitHub token for querying authenticated repository metadata.'
required: false
default: ${{ github.token }}
report-path:
description: 'Path where the ContributionReceipt JSON artifact will be written.'
required: false
default: 'patchgate-receipt.json'
create-check-run:
description: 'Whether to post an idempotent GitHub Check Run with the receipt summary.'
required: false
default: 'true'
check-name:
description: 'Title of the GitHub Check Run.'
required: false
default: 'PatchGate Review Gate'
outputs:
status:
description: 'The final evaluation status (ready_for_review, blocked, human_review_required, evidence_missing, policy_ambiguous).'
receipt-path:
description: 'Path to the generated ContributionReceipt JSON artifact.'
decision-input-digest:
description: 'SHA-256 canonical digest of the normalized input snapshot.'
receipt-digest:
description: 'SHA-256 canonical digest of the final evaluation receipt.'
summary-markdown:
description: 'Human-readable markdown summary of the evaluation findings.'
runs:
using: 'node24'
main: 'dist/action/index.js'