-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
38 lines (38 loc) · 1.1 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
name: datapack-linter
author: chen
description: Processing to lint datapack
runs:
using: node16
main: 'index.js'
branding:
icon: box
color: green
inputs:
GITHUB_TOKEN:
description: 'A GitHub token. It is recommended that this token be set when using linter in pull_request events.'
required: false
default: ''
lintDirectory:
description: 'Lint base directory.'
required: false
default: '.'
configPath:
description: 'Path of a configuration file.'
required: false
default: '.vscode/settings.json'
forcePass:
description: 'If set to "true", the check will not fail if any files fail.'
required: false
default: 'false'
muteSuccessResult:
description: 'If set to "true", the result of successfully checked files is not output.'
required: false
default: 'false'
ignoreLintPathPattern:
description: 'Do not check for files that match the entered globPattern.'
required: false
default: ''
alwaysCheckAllFile:
description: 'If set to "true", it will always check all files without using the cache.'
required: false
default: 'false'