Skip to content

Commit d6703a2

Browse files
committed
Fix issues with markdown lint
1 parent c5f2bd5 commit d6703a2

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,8 @@ jobs:
113113
markdown-lint:
114114
if: |
115115
needs.files-changed.outputs.documentation == 'true' ||
116-
needs.files-changed.outputs.release == 'true'
116+
needs.files-changed.outputs.release == 'true' ||
117+
needs.files-changed.outputs.github_workflows
117118
needs: ["files-changed"]
118119
runs-on: "ubuntu-latest"
119120
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
15+
prohibited_texts: []

0 commit comments

Comments
 (0)