From 87f495d21507d6844dc917a01e742eaaa45049c0 Mon Sep 17 00:00:00 2001 From: Matt Loberg Date: Tue, 14 Mar 2023 13:54:59 -0500 Subject: [PATCH] docs(action): add more detail around ignore Ignore only works for a single file or directory. Use an alternative method if you need to ignore more than one file fix #8 --- action.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/action.yml b/action.yml index fd03ff7..7644ded 100644 --- a/action.yml +++ b/action.yml @@ -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