Skip to content

Commit

Permalink
skpping over desktop entries
Browse files Browse the repository at this point in the history
  • Loading branch information
primalbeing committed Feb 7, 2025
1 parent 0448425 commit b5c398c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
- name: Install markdownlint-cli2
run: npm install -g markdownlint-cli2

- name: Run MarkdownLint Auto-Fix
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"

- name: Check for changes
id: git-diff
Expand All @@ -56,5 +56,5 @@ jobs:
git commit -m "Auto-fix MarkdownLint issues"
git push
- name: Run MarkdownLint Again to Ensure No Errors
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 comments on commit b5c398c

Please sign in to comment.