Bump reviewdog/action-misspell from 0789410278cba39afd488d97a0e305ba35776bbf to d6429416b12b09b4e2768307d53bef58d172e962 #8013
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| pull_request: | |
| push: | |
| branches-ignore: | |
| - 'autocommit' | |
| name: 'reviewdog' | |
| jobs: | |
| shellcheck: | |
| name: Shellcheck testing | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: shellcheck | |
| uses: reviewdog/action-shellcheck@4410ae3f82f068bdb0234069a9bf2367923fb39a # v1 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-pr-review | |
| path: "." # Optional. | |
| pattern: "*.sh" # Optional. | |
| exclude: "./.git/*" # Optional. | |
| misspell: | |
| name: Check spelling | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: spelling or typos | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: misspell | |
| uses: reviewdog/action-misspell@d6429416b12b09b4e2768307d53bef58d172e962 # v1 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| locale: "US" |