Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docs-linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ jobs:

- name: Run markdownlint on changed files
if: steps.changed-md.outputs.any_changed == 'true' && steps.check-count.outputs.too_many == 'false'
uses: DavidAnson/markdownlint-cli2-action@v10.0.1
uses: DavidAnson/markdownlint-cli2-action@v22.0.0
with:
config: .markdownlint.yaml
globs: ${{ steps.changed-md.outputs.all_changed_files }}

- name: Run markdownlint on all blog files (many changes)
if: steps.changed-md.outputs.any_changed == 'true' && steps.check-count.outputs.too_many == 'true'
uses: DavidAnson/markdownlint-cli2-action@v10.0.1
uses: DavidAnson/markdownlint-cli2-action@v22.0.0
with:
config: .markdownlint.yaml
globs: "blogs/**/*.md"
Expand Down
Loading