From 9fb58214d7eeda8ee1272d063d4b2f0e67a772dc Mon Sep 17 00:00:00 2001 From: sailajakommineni Date: Thu, 16 Nov 2023 06:55:40 +0000 Subject: [PATCH] modified --- .github/workflows/spellcheck.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml index bf85196f4b0..518cb1a3a54 100644 --- a/.github/workflows/spellcheck.yaml +++ b/.github/workflows/spellcheck.yaml @@ -3,7 +3,7 @@ name: spell and grammer check on: pull_request: paths: - - "docs" # provide name of the file or folder + - ".github/checking.txt" # provide name of the file or folder env: SPELL_CHECK_DISABLED: false @@ -34,11 +34,9 @@ jobs: uses: rojopolis/spellcheck-github-actions@0.34.0 with: config_path: .github/.spellcheck.yaml - source_files: "docs" # name of the file to check spell + source_files: ".github/checking.txt" # name of the file to check spell task_name: Markdown # To check the grammatical mistakes of the given files and folders. - name: Run grammar check if: ${{ env.GRAMMAR_CHECK_DISABLED == 'false' }} run: python grammar_check.py - -