forked from reviewdog/action-shellcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
46 lines (46 loc) · 1.54 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
name: 'Run shellcheck with reviewdog'
description: '🐶 Run shellcheck with reviewdog on pull requests to improve code review experience.'
author: 'haya14busa (reviewdog)'
inputs:
github_token:
description: 'GITHUB_TOKEN.'
default: '${{ github.token }}'
level:
description: 'Report level for reviewdog [info,warning,error]'
default: 'error'
reporter:
description: |
Reporter of reviewdog command [github-pr-check,github-pr-review,github-check].
Default is github-pr-check.
github-pr-review can use Markdown and add a link to rule page in reviewdog reports.
default: 'github-pr-check'
filter_mode:
description: |
Filtering mode for the reviewdog command [added,diff_context,file,nofilter].
Default is added.
default: 'added'
fail_on_error:
description: |
Exit code for reviewdog when errors are found [true,false]
Default is `false`.
default: 'false'
reviewdog_flags:
description: 'Additional reviewdog flags'
default: ''
path:
description: "Base directory to run shellcheck. Same as `[path]` of `find` command."
default: '.'
pattern:
description: "File patterns of target files. Same as `-name [pattern]` of `find` command."
default: '*.sh'
exclude:
description: "Exclude patterns of target files. Same as `-not -path [exclude]` of `find` command."
shellcheck_flags:
description: "Flags of shellcheck command."
default: '--external-sources'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'zoom-in'
color: 'purple'