From df50ed1f42e8ebdacd53dc97f1a03229477aa586 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sun, 24 Jul 2022 13:00:08 +0100 Subject: [PATCH] Add action to check spelling for PRs --- .github/workflows/spell-check.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/spell-check.yml diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml new file mode 100644 index 0000000..755ace7 --- /dev/null +++ b/.github/workflows/spell-check.yml @@ -0,0 +1,20 @@ +# Spell check newly added content, when PR opened and, put typo list as comment +name: ✏️ Spell Check +on: [pull_request] +jobs: + misspell: + name: runner / misspell + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2 + - name: Run Spell Check 📝 + uses: reviewdog/action-misspell@v1 + with: + github_token: ${{ secrets.BOT_GITHUB_TOKEN || secrets.GITHUB_TOKEN }} + locale: US + level: info + reporter: github-pr-review + path: README.md + filter_mode: added + fail_on_error: false