mirror of
https://github.com/lunchcat/sif.git
synced 2025-12-05 20:40:08 -08:00
21 lines
412 B
YAML
21 lines
412 B
YAML
name: Misspell Check
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
misspell:
|
|
name: runner / misspell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: misspell
|
|
uses: reviewdog/action-misspell@v1.13.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|
|
level: warning
|
|
locale: "US"
|