awesome-cryptography/.github/workflows/misspell.yml

21 lines
411 B
YAML
Raw Normal View History

2020-05-22 10:39:31 -06:00
name: misspell
on:
2020-11-17 00:15:53 -07:00
workflow_dispatch:
2020-05-22 10:39:31 -06:00
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: sobolevn/misspell-fixer-action@0.1.0
2020-11-17 00:15:53 -07:00
- uses: peter-evans/create-pull-request@v3
2020-05-22 10:39:31 -06:00
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: 'Fixes by misspell-fixer'
title: 'Typos fix by misspell-fixer'