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 0448425 commit b5c398cCopy full SHA for b5c398c
.github/workflows/ci.yml
@@ -39,8 +39,8 @@ jobs:
39
- name: Install markdownlint-cli2
40
run: npm install -g markdownlint-cli2
41
42
- - name: Run MarkdownLint Auto-Fix
43
- run: markdownlint-cli2 --fix **/*.md
+ - name: Run MarkdownLint Auto-Fix (excluding Desktop Entries/README.md)
+ run: markdownlint-cli2 --fix "**/*.md" --ignore "Desktop Entries/README.md"
44
45
- name: Check for changes
46
id: git-diff
@@ -56,5 +56,5 @@ jobs:
56
git commit -m "Auto-fix MarkdownLint issues"
57
git push
58
59
- - name: Run MarkdownLint Again to Ensure No Errors
60
- run: markdownlint-cli2 **/*.md
+ - name: Run MarkdownLint Again to Ensure No Errors (excluding Desktop Entries/README.md)
+ run: markdownlint-cli2 "**/*.md" --ignore "Desktop Entries/README.md"
0 commit comments