forked from nikitasavinov/checkstyle-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
45 lines (45 loc) · 1.27 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
# action.yml
name: 'Run java checkstyle'
description: 'Run java checkstyle with reviewdog'
branding:
icon: 'code'
color: 'red'
inputs:
github_token:
description: 'GITHUB_TOKEN.'
default: '${{ github.token }}'
level:
description: 'Report level for reviewdog [info,warning,error]'
default: 'info'
reporter:
description: 'Reporter of reviewdog command [github-pr-check,github-pr-review]'
default: 'github-pr-check'
filter_mode:
description: |
Filtering 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'
checkstyle_config:
description: 'Checkstyle config file'
required: true
default: 'google_checks.xml'
checkstyle_version:
description: 'Checkstyle version'
default: '8.37'
workdir:
description: 'Working directory relative to the root directory.'
default: '.'
tool_name:
description: 'Tool name to use for reviewdog reporter'
default: 'reviewdog'
properties_file:
description: 'Properties file relative to the root directory.'
default: ''
runs:
using: 'docker'
image: 'Dockerfile'