mirror of
https://github.com/lunchcat/sif.git
synced 2026-01-12 21:13:50 -08:00
- update actions/checkout from v2/v3 to v4 across all workflows - update reviewdog actions to latest versions - update jetbrains/qodana-action to v2024.3 - update actions/dependency-review-action to v4 - replace deprecated actions/create-release and upload-release-asset with softprops/action-gh-release@v2
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@v4
|
|
- name: misspell
|
|
uses: reviewdog/action-misspell@v1.26.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|
|
level: warning
|
|
locale: "US"
|