From be8fc2e0183fb7c8c9dc0b5a7dce6ed70e1da91d Mon Sep 17 00:00:00 2001 From: Dominik Simonik Date: Tue, 7 Apr 2026 16:23:11 +0200 Subject: [PATCH 1/2] chore(ci): exclude CHANGELOG.md from markdown lint and spell check CHANGELOG.md is generated by automation, not maintained by humans. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2252974..eb0efe9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ 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 @@ -24,7 +24,7 @@ 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 From 02907cc3843f0e9a4d0c5d010146217884d4715b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20=C5=A0imon=C3=ADk?= <32575328+ryzizub@users.noreply.github.com> Date: Tue, 7 Apr 2026 16:59:53 +0200 Subject: [PATCH 2/2] Update ci.yaml --- .github/workflows/ci.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index eb0efe9..f6c8f87 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,9 @@ jobs: - name: Lint Markdown uses: DavidAnson/markdownlint-cli2-action@v23 with: - globs: '**/*.md !CHANGELOG.md' + globs: | + **/*.md + !CHANGELOG.md config: 'config/custom.markdownlint.jsonc' spelling: name: ✍️ Spelling Check @@ -24,7 +26,9 @@ jobs: - name: Spell Check Code uses: streetsidesoftware/cspell-action@v8 with: - files: '**/*.md !CHANGELOG.md' + files: | + **/*.md + !CHANGELOG.md config: 'config/cspell.json' detect-changed-skills: name: 🔎 Detect Changed Skills