From 134dacb31e2ffbef081ed494e5328f3f3e8a0adb Mon Sep 17 00:00:00 2001 From: sailajakommineni Date: Tue, 28 Nov 2023 07:09:35 +0000 Subject: [PATCH] modified --- .github/workflows/spellcheck.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/spellcheck.yaml b/.github/workflows/spellcheck.yaml index 7a05d8875db..bd37d168bf5 100644 --- a/.github/workflows/spellcheck.yaml +++ b/.github/workflows/spellcheck.yaml @@ -36,7 +36,7 @@ jobs: uses: rojopolis/spellcheck-github-actions@0.34.0 with: config_path: .github/.spellcheck.yaml - source_files: "docs**/*.md" # name of the file to check spell + source_files: "docs/**/*.md" # 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 @@ -52,7 +52,7 @@ jobs: directory_path = 'docs' # Read the text from your file - file_path = 'docs**/*.md' # Update the path accordingly + file_path = 'docs/**/*.md' # Update the path accordingly with open(file_path, 'r', encoding='utf-8') as file: text = file.read()