From ad83bb5d8a909216a510e4ab0ed2ad9b05b11b76 Mon Sep 17 00:00:00 2001 From: Seb M'Caw Date: Mon, 14 Oct 2024 11:53:55 +0100 Subject: [PATCH] fix: spellcheck workflow (#1779) * Add typos * Fix spellcheck * Revert "Add typos" This reverts commit 282c3a7fd8f19b480032c4063349afc32a9a8d02. * Change docs without typo * Revert "Change docs without typo" This reverts commit 4d52934c3c1e7c6bf76357b9afd8b184b7baa126. --- .github/workflows/spellcheck.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index f9208695b..37bf251fc 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -8,11 +8,12 @@ jobs: spellcheck: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 - - name: misspell + - uses: actions/checkout@v4 + - name: Run misspell uses: reviewdog/action-misspell@v1 with: github_token: ${{ secrets.github_token }} - reporter: github-pr-review + reporter: github-pr-annotations locale: "US" - exclude: '*.lock' \ No newline at end of file + pattern: '*.md' + fail_on_error: true