From dd11913a2ac4f148d2854a6b60a94b7fbc5643ff Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 22 May 2020 19:39:31 +0300 Subject: [PATCH] Create misspell.yml --- .github/workflows/misspell.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..83966ab --- /dev/null +++ b/.github/workflows/misspell.yml @@ -0,0 +1,19 @@ +name: misspell + +on: + 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@v2.4.4 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commit-message: 'Fixes by misspell-fixer' + title: 'Typos fix by misspell-fixer'