forked from reviewdog/action-misspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
48 lines (48 loc) · 1.73 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
name: 'Run misspell with reviewdog'
description: '🐶 Run misspell with reviewdog on pull requests to improve code review experience.'
author: 'haya14busa (reviewdog)'
inputs:
github_token:
description: 'GITHUB_TOKEN.'
default: '${{ github.token }}'
locale:
description: '-locale flag of misspell. (US/UK)'
default: ''
level:
description: 'Report level for reviewdog [info,warning,error]'
default: 'error'
reporter:
description: 'Reporter of reviewdog command [github-pr-check,github-pr-review].'
default: 'github-pr-check'
ignore:
description: 'Comma-separated words to ignore'
default: ''
path:
description: "Base directory to run misspell. Same as `[path]` of `find` command."
default: '.'
pattern:
description: "File patterns of target files. Same as `-name [pattern]` of `find` command."
default: '*'
exclude:
description: "Exclude patterns of target files. Same as `-not -path [exclude]` of `find` command."
default: ''
filter_mode:
description: "Filtering mode for the reviewdog command [added,diff_context,file,nofilter]."
default: 'added'
fail_level:
description: |
If set to `none`, always use exit code 0 for reviewdog.
Otherwise, exit code 1 for reviewdog if it finds at least 1 issue with severity greater than or equal to the given level.
Possible values: [none,any,info,warning,error]
Default is `none`.
default: 'none'
fail_on_error:
description: "Deprecated, use `fail_level` instead. Exit code for reviewdog when errors are found [true,false]."
deprecationMessage: Deprecated, use `fail_level` instead.
default: 'false'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'edit'
color: 'gray-dark'