Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
docs(action): add more detail around ignore
Browse files Browse the repository at this point in the history
Ignore only works for a single file or directory. Use an alternative
method if you need to ignore more than one file

fix #8
  • Loading branch information
mloberg committed Mar 14, 2023
1 parent c70bd1d commit 87f495d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
name: markdown-lint
author: Articulate Global, LLC
description: Lint your markdown
description: Lint your markdown files.
inputs:
version:
description: Version of markdownlint-cli to use
description: Version of markdownlint-cli to use.
required: false
config:
description: markdownlint config file
description: markdownlint config file.
required: false
files:
description: Markdown files to scan
description: Markdown files to scan.
required: false
default: '**/*.{md,markdown}'
ignore:
description: Files or directories to ignore
description: File or directory to ignore. If ignoring more than one file/directory you must use `.markdownlintignore` instead.
required: false
fix:
description: Try to fix basic errors
description: Try to fix basic errors.
required: false
runs:
using: docker
Expand Down

0 comments on commit 87f495d

Please sign in to comment.