Skip to content

Commit 993af86

Browse files
ryzizubclaude
andauthored
fix(ci): exclude CHANGELOG.md from markdown lint and spell check (#69)
Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 99d948f commit 993af86

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
- name: Lint Markdown
1515
uses: DavidAnson/markdownlint-cli2-action@v23
1616
with:
17-
globs: '**/*.md'
17+
globs: |
18+
**/*.md
19+
!CHANGELOG.md
1820
config: 'config/custom.markdownlint.jsonc'
1921
spelling:
2022
name: ✍️ Spelling Check
@@ -24,7 +26,9 @@ jobs:
2426
- name: Spell Check Code
2527
uses: streetsidesoftware/cspell-action@v8
2628
with:
27-
files: '**/*.md'
29+
files: |
30+
**/*.md
31+
!CHANGELOG.md
2832
config: 'config/cspell.json'
2933
detect-changed-skills:
3034
name: 🔎 Detect Changed Skills

0 commit comments

Comments
 (0)