Skip to content

Commit

Permalink
Added spelling check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mburumaxwell committed Jan 18, 2021
1 parent 5310e32 commit 291470a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/mispell.yml
Original file line number Diff line number Diff line change
@@ -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/[email protected]
- uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'Fixes by misspell-fixer'
title: 'Typos fix by misspell-fixer'

0 comments on commit 291470a

Please sign in to comment.