From 89a4d17d8944a88bd43bf33069b5faa1ca4bd1b7 Mon Sep 17 00:00:00 2001 From: Dariusz Porowski <3431813+DariuszPorowski@users.noreply.github.com> Date: Fri, 31 Jul 2026 09:27:10 -0700 Subject: [PATCH 1/3] feat(cspell): update onfig to check YAML files Signed-off-by: Dariusz Porowski <3431813+DariuszPorowski@users.noreply.github.com> --- sync-templates/.github/linters/.cspell.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sync-templates/.github/linters/.cspell.yml b/sync-templates/.github/linters/.cspell.yml index 33ea8b6..7a4e804 100644 --- a/sync-templates/.github/linters/.cspell.yml +++ b/sync-templates/.github/linters/.cspell.yml @@ -130,6 +130,7 @@ ignorePaths: - "**/redirect/**" - "**/presentation-pack/**" -# Only check markdown files (the workflow also restricts the glob to **/*.md). + +# Default to checking both Markdown and YAML. CI also passes an explicit glob. files: - - "**/*.md" + - "**/*.{md,yaml,yml}" From 23458707777df058b53f63054441ff163b41d99a Mon Sep 17 00:00:00 2001 From: Dariusz Porowski <3431813+DariuszPorowski@users.noreply.github.com> Date: Fri, 31 Jul 2026 09:28:06 -0700 Subject: [PATCH 2/3] Update .cspell.yml Signed-off-by: Dariusz Porowski <3431813+DariuszPorowski@users.noreply.github.com> --- sync-templates/.github/linters/.cspell.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/sync-templates/.github/linters/.cspell.yml b/sync-templates/.github/linters/.cspell.yml index 7a4e804..5497a5d 100644 --- a/sync-templates/.github/linters/.cspell.yml +++ b/sync-templates/.github/linters/.cspell.yml @@ -130,7 +130,6 @@ ignorePaths: - "**/redirect/**" - "**/presentation-pack/**" - # Default to checking both Markdown and YAML. CI also passes an explicit glob. files: - "**/*.{md,yaml,yml}" From 8e2939e130fc31759f2882b1c7fba0b5c0c8280e Mon Sep 17 00:00:00 2001 From: Dariusz Porowski <3431813+DariuszPorowski@users.noreply.github.com> Date: Fri, 31 Jul 2026 09:29:29 -0700 Subject: [PATCH 3/3] Update spellcheck workflow to include Markdown and YAML Added glob pattern to check Markdown and YAML files. Signed-off-by: Dariusz Porowski <3431813+DariuszPorowski@users.noreply.github.com> --- workflow-templates/spellcheck.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/workflow-templates/spellcheck.yml b/workflow-templates/spellcheck.yml index ffe241a..242d514 100644 --- a/workflow-templates/spellcheck.yml +++ b/workflow-templates/spellcheck.yml @@ -20,3 +20,7 @@ jobs: permissions: contents: read pull-requests: write + with: + # Check both Markdown docs and the embedded `description` fields in + # resource type YAML schemas (and other YAML docs in the repo). + glob: "**/*.{md,yaml,yml}"