forked from yuzutech/annotations-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 799 Bytes
/
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
name: 'Annotate Action'
branding:
icon: 'edit-3'
color: 'yellow'
author: 'Guillaume Grossetie'
description: 'Creates annotations from a JSON file'
inputs:
repo-token:
description: 'Token used to interact with the GitHub API.'
required: true
input:
description: 'Path to a JSON file which contains a list of annotations.'
required: true
title:
description: 'Title of the check'
required: false
default: 'check'
ignore-unauthorized-error:
description: 'Ignore errors when the provided repo-token does not have write permissions'
required: false
default: 'false'
ignore-missing-file:
description: 'Ignore if the file which contains annotations is missing'
required: false
default: 'true'
runs:
using: 'node12'
main: 'dist/index.js'