forked from LouisBrunner/checks-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
53 lines (53 loc) · 1.57 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: 'GitHub Checks'
description: 'Wrapper around the GitHub Checks API'
author: 'Louis Brunner'
branding:
icon: 'check-circle'
color: 'green'
inputs:
repo:
description: 'the target `owner/repo` to manage the check run on (defaults to the current repository'
required: false
sha:
description: 'the target commit''s SHA (defaults to the current commit)'
required: false
token:
description: 'your GITHUB_TOKEN'
required: true
name:
description: 'the name of the check to create (incompatible with `check_id`)'
required: false
check_id:
description: 'ID of the check to update (incompatible with `name`)'
required: false
conclusion:
description: 'the conclusion of your check'
required: false
status:
description: 'the status of your check'
required: false
default: completed
action_url:
description: 'the url to call back to when using `action_required` as conclusion or with `actions`'
required: false
details_url:
description: 'a URL with more details about your check, will be overriden by `action_url` depending on context'
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
outputs:
check_id:
description: 'the ID of the created check, useful to update it in another action'
runs:
using: 'node12'
main: 'dist/index.js'