Add example workflow demonstrating linting only changed files (closes #12).

This commit is contained in:
David Anson
2022-07-31 11:28:56 -07:00
parent f9beccb1a4
commit 5886d8c11c
2 changed files with 23 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- uses: tj-actions/changed-files@v24
id: changed-files
with:
files: '**/*.md'
separator: "\n"
- uses: DavidAnson/markdownlint-cli2-action@v6
if: steps.changed-files.outputs.any_changed == 'true'
with:
globs: ${{ steps.changed-files.outputs.all_changed_files }}