-
Notifications
You must be signed in to change notification settings - Fork 12
/
action.yml
34 lines (31 loc) · 963 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
name: Markdown Linting Action
description: GitHub Action to run markdown linter
author: avto-dev
inputs: # <https://git.io/JvkYF#inputs>
rules:
description: 'Custom rule files (file|directory|glob|package)'
required: false
config:
description: 'Configuration file (JSON, JSONC, or YAML)'
required: false
fix:
description: 'Fix basic errors'
required: false
default: 'false'
output:
description: 'Write issues to file'
required: false
ignore:
description: 'Files to ignore/exclude'
required: false
args: # do not change this name! reason: <https://git.io/Jvk8K> (usage as named action and docker image with same syntax)
description: 'Files (directories|globs) for a work or any additional arguments'
required: true
runs: # <https://git.io/JvkYF#runs>
using: docker
image: Dockerfile
args:
- ${{ inputs.args }}
branding: # <https://git.io/JvkYF#branding>
icon: file-text
color: green