-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
action.yml
52 lines (52 loc) · 1.41 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
name: 'GitHub Check Runs Action'
description: 'Create and manage one or more GitHub check runs per job.'
author: 'dflydev'
inputs:
token:
description: 'your GITHUB_TOKEN'
required: true
collection:
description: 'the name of your check collection'
required: false
id:
description: 'the step ID related to this check'
required: false
checks:
description: 'the checks you want to manage'
required: false
name:
description: 'the name of your check'
required: true
conclusion:
description: 'the conclusion of your check'
required: true
status:
description: 'the status of your check'
required: false
action_url:
description: 'the url to call back to when using `action_required` as conclusion or with `actions`'
required: false
output:
description: 'the output of your check'
required: false
annotations:
description: 'the annotations of your check'
required: false
images:
description: 'the images of your check'
required: false
actions:
description: 'the actions of your check'
required: false
fail-on-error:
description: 'step will fail if specified `conclusion` is not `success` or `neutral`'
required: false
fail-on-neutral:
description: 'step will fail if specified `conclusion` is `neutral`'
required: false
runs:
using: 'node12'
main: 'dist/index.js'
branding:
icon: 'check-square'
color: 'green'