2022-07-23 22:28:59 +02: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-14 07:22:53 +01:00
|
|
|
branding:
|
2022-07-23 22:28:59 +02:00
|
|
|
icon: check-square
|
|
|
|
color: orange
|
2021-01-13 07:10:33 +01:00
|
|
|
inputs:
|
2023-06-11 05:35:20 +02: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-22 07:24:48 +02:00
|
|
|
default: ''
|
|
|
|
required: false
|
2021-01-13 23:50:05 +01:00
|
|
|
globs:
|
2022-07-23 22:28:59 +02:00
|
|
|
description: Glob expression(s) of files to lint (newline-delimited)
|
2021-01-13 07:10:33 +01:00
|
|
|
default: '*.{md,markdown}'
|
|
|
|
required: false
|
2022-11-30 04:29:42 +01:00
|
|
|
separator:
|
|
|
|
description: String to use as a separator for the "globs" input (defaults to newline)
|
|
|
|
default: "\n"
|
|
|
|
required: false
|
2021-01-13 07:10:33 +01:00
|
|
|
runs:
|
2023-10-27 04:20:25 +02:00
|
|
|
using: node20
|
2022-07-23 22:28:59 +02:00
|
|
|
main: dist/index.js
|