2022-07-23 13:28:59 -07:00
|
|
|
name: markdownlint-cli2-action
|
|
|
|
author: David Anson
|
|
|
|
description: A GitHub Action to run the markdownlint-cli2 tool for linting Markdown/CommonMark files with the markdownlint library
|
2021-01-13 22:22:53 -08:00
|
|
|
branding:
|
2022-07-23 13:28:59 -07:00
|
|
|
icon: check-square
|
|
|
|
color: orange
|
2021-01-12 22:10:33 -08:00
|
|
|
inputs:
|
2023-06-10 20:35:20 -07:00
|
|
|
config:
|
|
|
|
description: Path of a file to use for the base configuration object (defaults to none)
|
|
|
|
default: ''
|
|
|
|
required: false
|
|
|
|
fix:
|
|
|
|
description: Whether to fix supported issues automatically (any truthy value enables)
|
2022-07-21 22:24:48 -07:00
|
|
|
default: ''
|
|
|
|
required: false
|
2021-01-13 14:50:05 -08:00
|
|
|
globs:
|
2022-07-23 13:28:59 -07:00
|
|
|
description: Glob expression(s) of files to lint (newline-delimited)
|
2021-01-12 22:10:33 -08:00
|
|
|
default: '*.{md,markdown}'
|
|
|
|
required: false
|
2022-11-30 03:29:42 +00:00
|
|
|
separator:
|
|
|
|
description: String to use as a separator for the "globs" input (defaults to newline)
|
|
|
|
default: "\n"
|
|
|
|
required: false
|
2021-01-12 22:10:33 -08:00
|
|
|
runs:
|
2023-10-27 02:20:25 +00:00
|
|
|
using: node20
|
2024-11-17 16:48:20 -08:00
|
|
|
main: dist/index.mjs
|