From ea10e8a21963cb603167892cce37eab40f7a1bc6 Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Sun, 6 Dec 2020 22:11:43 +0100 Subject: [PATCH] [CI] add github action with misspellcheck just for pull requests --- .github/workflows/autoreview.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/autoreview.yml diff --git a/.github/workflows/autoreview.yml b/.github/workflows/autoreview.yml new file mode 100644 index 0000000..367b690 --- /dev/null +++ b/.github/workflows/autoreview.yml @@ -0,0 +1,12 @@ +name: autoreview +on: [pull_request] + +jobs: + misspellcheck: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Run misspell with reviewdog + uses: reviewdog/action-misspell@v1 + #with: + # pattern: "*.md"