Skip to content

Commit 95b2491

Browse files
authored
Merge pull request #419 from opsmill/pog-fix-markdownlint
Trigger markdown lint on github action updates & fix rules
2 parents 4d0c684 + f6f7842 commit 95b2491

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ jobs:
8484

8585

8686
markdown-lint:
87-
if: needs.files-changed.outputs.documentation == 'true'
87+
if: |
88+
needs.files-changed.outputs.documentation == 'true' ||
89+
needs.files-changed.outputs.github_workflows == 'true'
8890
needs: ["files-changed"]
8991
runs-on: "ubuntu-latest"
9092
timeout-minutes: 5

.markdownlint.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ MD034: false # no-bare-urls
1111
MD041: false # allow 1st line to not be a top-level heading (required for Towncrier)
1212
MD045: false # no alt text around images
1313
MD047: false # single trailing newline
14+
MD059: # Link descriptions that are prohibited
15+
prohibited_texts: []

0 commit comments

Comments
 (0)