Documentation for Proj0503 and Proj0504 #74
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
| name: Reviewdog Misspell | |
| on: [pull_request] | |
| jobs: | |
| misspell: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| checks: write | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: reviewdog/[email protected] | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| reporter: github-pr-review | |
| level: error | |
| locale: "US" | |
| pattern: | | |
| *.md | |
| *.MD | |
| *.txt | |
| *.TXT | |
| filter_mode: nofilter | |
| fail_level: none | |
| fail_on_error: false |