feat: create qa agent skill for detailed code review #1188
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: Check Docusaurus docs with Vale linter | |
| on: [pull_request] | |
| jobs: | |
| vale: | |
| name: Vale doc linter | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.1.1 | |
| # Set up Vale Action — only lint changed lines to avoid flagging pre-existing issues. | |
| - uses: errata-ai/vale-action@v2.1.1 | |
| with: | |
| # Only check lines added/modified in the PR diff. | |
| filter_mode: diff_context | |
| # Set the reporter to display the output | |
| reporter: github-pr-check | |
| # Fails the action if there are errors | |
| fail_on_error: true | |
| # Lint docs across all versioned directories | |
| files: 'versioned_docs' | |
| # Specify the Vale version | |
| version: 3.0.3 | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |