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