Change `paths-ignore` to `paths` in `markdownlint.yml` (#2211)

Markdown lint should only run when a `*.md` file has changed. This was likely a copy paste mistake when this Github action was created.
This commit is contained in:
Michael Maxwell 2021-07-29 16:13:44 -07:00 committed by GitHub
parent ceaaa40262
commit 29a4a791f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ name: markdownlint
on:
push:
branches: [ main, metrics ]
paths-ignore:
paths:
- '**.md'
pull_request:
branches: [ main, metrics ]