Skip to content
Merged
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
10 changes: 9 additions & 1 deletion lint-markdown/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,17 @@ runs:
repository: Consensys/docs-gha
path: .docs-gha

- uses: tj-actions/changed-files@v45
id: changed-files
with:
files: ${{ inputs.FILEPATHS }}
separator: ','

- name: markdown lint
uses: DavidAnson/markdownlint-cli2-action@v17
with:
config: ${{ inputs.CONFIG_FILE }}
globs: ${{ inputs.FILEPATHS }}
globs: ${{ steps.changed-files.outputs.all_changed_files }}
separator: ','
# don't block the build - let it proceed
#continue-on-error: true