mirror of
https://github.com/DavidAnson/markdownlint-cli2-action.git
synced 2024-11-21 13:51:28 +01:00
Update documentation and examples to reference @v13.
This commit is contained in:
parent
88364f7452
commit
ed4dec634f
3 changed files with 9 additions and 9 deletions
2
.github/workflows/changed.yml
vendored
2
.github/workflows/changed.yml
vendored
|
@ -12,7 +12,7 @@ jobs:
|
|||
with:
|
||||
files: '**/*.md'
|
||||
separator: ","
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
if: steps.changed-files.outputs.any_changed == 'true'
|
||||
with:
|
||||
globs: ${{ steps.changed-files.outputs.all_changed_files }}
|
||||
|
|
2
.github/workflows/example.yml
vendored
2
.github/workflows/example.yml
vendored
|
@ -5,7 +5,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
with:
|
||||
globs: |
|
||||
*.md
|
||||
|
|
14
README.md
14
README.md
|
@ -67,13 +67,13 @@ expressions.
|
|||
To lint Markdown files in the base directory of a project:
|
||||
|
||||
```yaml
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
```
|
||||
|
||||
To lint all Markdown files in a project:
|
||||
|
||||
```yaml
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
with:
|
||||
globs: '**/*.md'
|
||||
```
|
||||
|
@ -81,7 +81,7 @@ To lint all Markdown files in a project:
|
|||
To lint specific Markdown files in a project:
|
||||
|
||||
```yaml
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
with:
|
||||
globs: |
|
||||
README.md
|
||||
|
@ -92,7 +92,7 @@ To lint specific Markdown files in a project:
|
|||
To use a custom separator:
|
||||
|
||||
```yaml
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
with:
|
||||
globs: 'README.md,CHANGELOG.md,docs/*.md'
|
||||
separator: ','
|
||||
|
@ -101,7 +101,7 @@ To use a custom separator:
|
|||
To fix supported issues when linting:
|
||||
|
||||
```yaml
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
with:
|
||||
fix: true
|
||||
globs: '**/*.md'
|
||||
|
@ -110,7 +110,7 @@ To fix supported issues when linting:
|
|||
To specify a custom configuration file:
|
||||
|
||||
```yaml
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
with:
|
||||
config: 'config/custom.markdownlint.jsonc'
|
||||
globs: '**/*.md'
|
||||
|
@ -119,7 +119,7 @@ To specify a custom configuration file:
|
|||
To prevent linting issues from failing the workflow run:
|
||||
|
||||
```yaml
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v12
|
||||
- uses: DavidAnson/markdownlint-cli2-action@v13
|
||||
continue-on-error: true
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue