Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
- name: Lint Markdown
uses: DavidAnson/markdownlint-cli2-action@v23
with:
globs: '**/*.md'
globs: |
**/*.md
!CHANGELOG.md
config: 'config/custom.markdownlint.jsonc'
spelling:
name: ✍️ Spelling Check
Comment thread
ryzizub marked this conversation as resolved.
Expand All @@ -24,7 +26,9 @@ jobs:
- name: Spell Check Code
uses: streetsidesoftware/cspell-action@v8
with:
files: '**/*.md'
files: |
**/*.md
!CHANGELOG.md
config: 'config/cspell.json'
detect-changed-skills:
name: 🔎 Detect Changed Skills
Expand Down