Skip to content

Commit

Permalink
Create fix-typos.yml (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
stavares843 committed Nov 15, 2022
1 parent af83c07 commit a4044c8
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/fix-typos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Automatically fix typos

on:
push:
branches:
- master

permissions:
contents: write
pull-requests: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: master
- uses: sobolevn/misspell-fixer-action@master
- uses: peter-evans/create-pull-request@v4.2.0
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a4044c8

Please sign in to comment.