From 4db67c70b84e8182c7217990027b8a2c8b78bc0e Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Wed, 25 Mar 2020 18:21:14 -0400 Subject: [PATCH] Misspell workflow --- .github/workflows/misspell.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/misspell.yml diff --git a/.github/workflows/misspell.yml b/.github/workflows/misspell.yml new file mode 100644 index 00000000..059ce50a --- /dev/null +++ b/.github/workflows/misspell.yml @@ -0,0 +1,20 @@ +name: Misspells +on: [pull_request,push] +jobs: + misspell: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: reviewdog fixer + uses: reviewdog/action-misspell@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + locale: "US" + - name: sobolevn fixer + uses: sobolevn/misspell-fixer-action@master + - uses: peter-evans/create-pull-request@v2.4.4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: 'Typos fixes' + title: "Typos fixes" \ No newline at end of file