From 6e02914c2b5bac2f6b948a5ba8b71ad6cf63319d Mon Sep 17 00:00:00 2001 From: guotong ma Date: Tue, 26 Dec 2023 21:25:15 +0800 Subject: [PATCH] [ci][spell_check]change check path --- .github/actions/spelling/only.txt | 1 + .github/workflows/spell_check.yml | 15 ++++++--------- 2 files changed, 7 insertions(+), 9 deletions(-) create mode 100644 .github/actions/spelling/only.txt diff --git a/.github/actions/spelling/only.txt b/.github/actions/spelling/only.txt new file mode 100644 index 0000000000..024b8d4fdc --- /dev/null +++ b/.github/actions/spelling/only.txt @@ -0,0 +1 @@ +^documentation/.* diff --git a/.github/workflows/spell_check.yml b/.github/workflows/spell_check.yml index 14dc1e3953..af0942c278 100644 --- a/.github/workflows/spell_check.yml +++ b/.github/workflows/spell_check.yml @@ -3,20 +3,19 @@ name: Check Spelling on: push: branches: - - master + - master + paths: + - 'documentation/**' pull_request: branches: - - master - + - master + paths: + - 'documentation/**' jobs: spelling: name: Check Spelling runs-on: ubuntu-latest if: github.repository_owner == 'RT-Thread' - permissions: - contents: read - pull-requests: read - actions: read steps: - name: output ignore words info run: | @@ -34,9 +33,7 @@ jobs: cspell:software-terms/softwareTerms.txt cspell:python/python.txt cspell:cpp/cpp.txt - check_extra_dictionaries: '' - - name: output Success info run: | echo "✅ Check spelling success." >> $GITHUB_STEP_SUMMARY