-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
53 lines (50 loc) · 1.65 KB
/
action.yml
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
---
name: Create a check run
author: Marcelo Carlos <contact@marcelocarlos.com>
description: Creates a check run on a commit
inputs:
token:
description: GitHub token
required: true
name:
description: Name of the check run
required: true
status:
description: The current status. Valid values are queued, in_progress, completed
required: false
default: 'queued'
check_run_id:
description: The unique identifier of the check run
required: false
default: ''
conclusion:
description: Required if you provide a status of 'completed'. Valid values are action_required, cancelled, failure, neutral, success, skipped, stale, timed_out
required: false
default: 'neutral'
output_title:
description: Title of the check run
required: true
output_summary:
description: Summary of the check run with a maximum of 65535 characters (markdown supported)
required: true
output_text:
description: Details (body) of the check run with a maximum of 65535 characters (markdown supported)
required: false
output_source_file:
description: Path to a file containing the output to be used instead of using `output_text`). Only used if `output_text` is not set.
required: false
default: ''
output_annotations:
description: Information from your analysis to specific lines of code. Input must be in a JSON list format.
required: false
default: ''
output_images:
description: Adds images to the output displayed in the GitHub pull request UI.
required: false
default: ''
outputs:
check_run_id:
description: 'ID of the check created'
runs:
using: 'node20'
main: 'dist/index.js'