From f9b9d6693db75509604329d56ab8ea99d085e89c Mon Sep 17 00:00:00 2001 From: Maxwell Weru Date: Fri, 29 Sep 2023 04:52:56 +0300 Subject: [PATCH] Added spell checking 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 0000000..0745a38 --- /dev/null +++ b/.github/workflows/misspell.yml @@ -0,0 +1,20 @@ +name: misspell + +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: sobolevn/misspell-fixer-action@0.1.0 + - uses: peter-evans/create-pull-request@v5 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: 'Fixes by misspell-fixer' + title: 'Typos fix by misspell-fixer'