From 7d58497b24e95dbb5c494c98a5bc1c3f5107563a Mon Sep 17 00:00:00 2001 From: Stefan Pejcic Date: Sat, 30 Nov 2024 00:09:11 +0100 Subject: [PATCH] Update spellcheck-docs.yml --- .github/workflows/spellcheck-docs.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/spellcheck-docs.yml b/.github/workflows/spellcheck-docs.yml index 28e1954f..4c24a32e 100644 --- a/.github/workflows/spellcheck-docs.yml +++ b/.github/workflows/spellcheck-docs.yml @@ -3,15 +3,15 @@ name: Spell Check on: pull_request: paths: - - 'website/**/*.md' - - 'website/**/*.mdx' + - 'website/docs/**/*.md' + - 'website/docs/**/*.mdx' workflow_dispatch: inputs: directory: description: 'Directory to check' required: false - default: 'website' + default: 'website/docs' jobs: spell-check: @@ -34,7 +34,7 @@ jobs: if [ -n "${{ github.event.inputs.directory }}" ]; then cspell "${{ github.event.inputs.directory }}/**/*.md" "${{ github.event.inputs.directory }}/**/*.mdx" else - cspell "website/**/*.md" "website/**/*.mdx" + cspell "website/docs/**/*.md" "website/docs/**/*.mdx" fi - name: Upload Spell Check Report