From 288e24d10459c1c16d77ffb15e610b75119b2748 Mon Sep 17 00:00:00 2001 From: sailajakommineni Date: Tue, 28 Nov 2023 07:06:13 +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 05d8e2245aa..7a05d8875db 100644 --- a/.github/workflows/spellcheck.yaml +++ b/.github/workflows/spellcheck.yaml @@ -6,7 +6,7 @@ on: - "**" pull_request: paths: - - 'docs' + - 'docs/**' types: [opened, edited, updated] env: @@ -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()