This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Action name must be unique. I did not find a listed action using this name. Updated docs to use v1 tag instead of main
- Loading branch information
Showing
2 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
name: 'markdownlint' | ||
author: 'Articulate' | ||
description: 'Lint your markdown' | ||
name: markdown-lint | ||
author: Articulate Global Inc. | ||
description: Lint your markdown | ||
inputs: | ||
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: Files or directories to ignore | ||
required: false | ||
fix: | ||
description: 'Try to fix basic errors' | ||
description: Try to fix basic errors | ||
required: false | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
using: docker | ||
image: Dockerfile | ||
branding: | ||
color: 'blue' | ||
icon: 'check-circle' | ||
color: blue | ||
icon: check-circle |