ci: Changes to markdown lint workflow

- Do not trigger on changes to yaml files under `src`
- Upgrade markdownlint-cli2-action to v10
pull/201/head
Robert Dailey 2 years ago
parent cab505591f
commit f0d88854f8

@ -6,10 +6,12 @@ on:
paths:
- "**.md"
- .github/workflows/markdown-lint.yml
- "!src/**"
pull_request:
paths:
- "**.md"
- .github/workflows/markdown-lint.yml
- "!src/**"
jobs:
markdownlint:
@ -19,7 +21,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3
- name: Lint Markdown Files
uses: DavidAnson/markdownlint-cli2-action@v5
uses: DavidAnson/markdownlint-cli2-action@v10
with:
globs: |
**.md

Loading…
Cancel
Save