Split into separate classes and refine prompt #111
Workflow file for this run
This file contains 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: | |
types: [opened, reopened, synchronize] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Nitpick AI Review | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Nitpick AI Review | |
uses: ./ # Uses an action in the root directory | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
ai-model: claude-3.5-sonnet | |
api-key: ${{ secrets.CLAUDE_API_KEY }} | |
strict: false | |
ignore-patterns: '["*.md", ".gitignore", ".github/workflows/main.yml", "dist/**", ".eslintignore", "package.json", "tsconfig.json", ".prettierignore", "README.md", "yarn.lock", ".node-version"]' |