mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-30 23:40:13 -07:00
24a9f4411f
Bumps [reviewdog/action-misspell](https://github.com/reviewdog/action-misspell) from 1.26.0 to 1.27.0. - [Release notes](https://github.com/reviewdog/action-misspell/releases) - [Commits](https://github.com/reviewdog/action-misspell/compare/v1.26.0...v1.27.0) --- updated-dependencies: - dependency-name: reviewdog/action-misspell dependency-version: 1.27.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
557 B
YAML
29 lines
557 B
YAML
name: misspell check
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
misspell:
|
|
name: runner / misspell
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: misspell
|
|
uses: reviewdog/action-misspell@v1.27.0
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
reporter: github-pr-review
|
|
level: warning
|
|
locale: "US"
|