summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-07-12 11:02:20 +0200
committerMatthias Beyer <matthias.beyer@ifm.com>2022-08-08 07:56:28 +0200
commit8e563a72bb7600bde6295f7a42e338766b386734 (patch)
tree7c5057d5a6bd5b36a92ef7ad31c428bdf82da953
parentb6bf07e564cb8741558c484851a4af1b1053798f (diff)
Add reviewdog-missspellgh-action/lint
This patch adds a missspell check using reviewdog. Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
-rw-r--r--.github/workflows/pull-request-checks.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/pull-request-checks.yml b/.github/workflows/pull-request-checks.yml
index 1cdeea32..e47e2370 100644
--- a/.github/workflows/pull-request-checks.yml
+++ b/.github/workflows/pull-request-checks.yml
@@ -377,3 +377,14 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
reporter: github-pr-review
+ rd-misspell:
+ name: rd-misspell
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - name: misspell
+ uses: reviewdog/action-misspell@v1
+ with:
+ github_token: ${{ secrets.github_token }}
+ locale: "US"
+