generated from reviewdog/action-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
55 lines (54 loc) · 1.64 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
54
55
name: 'EkLine (GitHub Action)'
description: '📝 Optimize and improve your documentation website.'
author: 'EkLine'
inputs:
github_token:
description: 'GITHUB_TOKEN'
default: '${{ github.token }}'
workdir:
description: 'Working directory relative to the root directory.'
default: '.'
### Flags for reviewdog ###
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 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: ''
### Flags for EkLine Reviewer ###
ek_token:
description: 'Token for EkLine application'
required: true
content_dir:
description: 'Content directories relative to the root. Specify a single path or multiple paths (one per line). Example:
content_dir: ./testData
content_dir: |
./testData
./testData2'
default: '.'
ignore_rule:
description: 'Ignore the rules that are passed in as comma seperated values (eg: EK1,EK4)'
default: ''
enable_ai_suggestions:
description: 'Enable AI suggestions'
default: false
runs:
using: 'docker'
image: 'Dockerfile'
# Ref: https://haya14busa.github.io/github-action-brandings/
branding:
icon: 'book-open'
color: 'blue'