forked from errata-ai/vale-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
40 lines (34 loc) · 938 Bytes
/
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
name: Vale Linter
description: The official GitHub Action for Vale -- install, manage, and run Vale with ease.
author: jdkato
branding:
icon: check
color: green
inputs:
styles:
description: A list of styles to install prior to running Vale.
required: false
config:
description: An externally-hosted configuration file to use.
required: false
files:
description: 'The files to lint: "all" or "<some_folder>".'
required: false
default: all
onlyAnnotateModifiedLines:
description: Only post annotations on lines that have changed within a PR.
required: false
default: 'false'
debug:
description: 'Log debugging information to stdout'
required: false
default: 'false'
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.styles }}
- ${{ inputs.config }}
- ${{ inputs.files }}
- ${{ inputs.onlyAnnotateModifiedLines }}
- ${{ inputs.debug }}