add a workflow that updates the wg major version regularly #8206
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@v7.0.1 | |
| - name: shellcheck | |
| uses: reviewdog/action-shellcheck@v1.32.1 | |
| 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@v7.0.1 | |
| - name: misspell | |
| # Version tag requested by maintainer instead of a pinned SHA. | |
| uses: reviewdog/action-misspell@v1.28.0 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| locale: "US" |