forked from ChenCMD/datapack-linter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
34 lines (34 loc) · 959 Bytes
/
action.yml
File metadata and controls
34 lines (34 loc) · 959 Bytes
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
name: datapack-linter
author: chen
description: Processing to lint datapack
runs:
using: node16
main: 'index.js'
branding:
icon: box
color: green
inputs:
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'