Update pkgver to 25.12.20 #511
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
| # Workflow https://github.com/marketplace/actions/run-shellcheck-with-reviewdog | |
| name: Review Dog | |
| on: | |
| push: | |
| pull_request: | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| # This workflow contains a single job called "build" | |
| shellcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: shellcheck github-check | |
| uses: reviewdog/action-shellcheck@v1 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-check # Change reporter. | |
| #path: "shelldio" | |
| #pattern: "*.sh" # Optional. | |
| exclude: "./.git/*" # Optional. | |
| shellcheck_flags: --external-sources | |
| #level: info | |
| #shellcheck_flags: --severity=style | |
| shellcheck_pr: | |
| #if: github.event_name == 'pull_request' | |
| name: shellcheck pull request | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: shellcheck github-pr-review | |
| uses: reviewdog/action-shellcheck@v1 | |
| with: | |
| github_token: ${{ secrets.github_token }} | |
| reporter: github-pr-review | |
| #path: "shelldio" | |
| #pattern: "*.sh" # Optional. | |
| exclude: "./.git/*" # Optional. | |
| shellcheck_flags: --external-sources |