mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-18 10:26:09 +00:00
23 lines
554 B
YAML
23 lines
554 B
YAML
name: check-markdown
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: tj-actions/changed-files@v45
|
|
id: changed-files
|
|
with:
|
|
files: '**/*.md'
|
|
separator: ","
|
|
|
|
- uses: DavidAnson/markdownlint-cli2-action@v17
|
|
if: steps.changed-files.outputs.any_changed == 'true'
|
|
with:
|
|
globs: ${{ steps.changed-files.outputs.all_changed_files }}
|
|
separator: ","
|
|
config: ./.github/.markdownlint.json |