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

Commit

Permalink
chore: rename action to be unique
Browse files Browse the repository at this point in the history
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
mloberg committed Apr 9, 2021
1 parent 0785109 commit 17b8abe
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ file (`.markdownlint.{yaml,yml,json}`) or use our included default and scan all
files with the `md` or `markdown` extension.

```yaml
- uses: articulate/actions-markdownlint@main
- uses: articulate/actions-markdownlint@v1
```
You can set the config file, the files it scans, or files/directories to ignore.
```yaml
- uses: articulate/actions-markdownlint@main
- uses: articulate/actions-markdownlint@v1
with:
config: markdownlint-config.json
files: 'docs/**/*.md'
Expand Down
22 changes: 11 additions & 11 deletions action.yml
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

0 comments on commit 17b8abe

Please sign in to comment.