We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d0c684 commit f6f7842Copy full SHA for f6f7842
.github/workflows/ci.yml
@@ -84,7 +84,9 @@ jobs:
84
85
86
markdown-lint:
87
- if: needs.files-changed.outputs.documentation == 'true'
+ if: |
88
+ needs.files-changed.outputs.documentation == 'true' ||
89
+ needs.files-changed.outputs.github_workflows == 'true'
90
needs: ["files-changed"]
91
runs-on: "ubuntu-latest"
92
timeout-minutes: 5
.markdownlint.yaml
@@ -11,3 +11,5 @@ MD034: false # no-bare-urls
11
MD041: false # allow 1st line to not be a top-level heading (required for Towncrier)
12
MD045: false # no alt text around images
13
MD047: false # single trailing newline
14
+MD059: # Link descriptions that are prohibited
15
+ prohibited_texts: []
0 commit comments