From 291470a3f9a23a1b917212acf34bcaff9ab3019e Mon Sep 17 00:00:00 2001 From: Maxwell Weru Date: Mon, 18 Jan 2021 10:01:16 +0300 Subject: [PATCH] Added spelling check workflow --- .github/workflows/mispell.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/mispell.yml diff --git a/.github/workflows/mispell.yml b/.github/workflows/mispell.yml new file mode 100644 index 0000000..b0bcb2b --- /dev/null +++ b/.github/workflows/mispell.yml @@ -0,0 +1,20 @@ +name: misspell + +on: + workflow_dispatch: + schedule: + - cron: '0 0 * * *' + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - uses: sobolevn/misspell-fixer-action@0.1.0 + - uses: peter-evans/create-pull-request@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: 'Fixes by misspell-fixer' + title: 'Typos fix by misspell-fixer'