chore: This is a test #3
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: Bug Prediction (Overwatch) | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| permissions: | |
| contents: read | |
| jobs: | |
| upload-overwatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Overwatch CLI | |
| run: | | |
| curl -o overwatch-cli https://overwatch.codecov.io/linux/cli | |
| chmod +x overwatch-cli | |
| # Using --upload-empty-on-error flag to force this step through. | |
| # This workflow is a temporary workaround until this alpha feature | |
| # is merged into AI PR review | |
| - name: Run Overwatch CLI | |
| run: | | |
| ./overwatch-cli \ | |
| --auth-token ${{ secrets.OVERWATCH_SENTRY_AUTH_TOKEN }} \ | |
| --organization-slug codecov \ | |
| --upload-empty-on-error \ | |
| typescript --package-manager pnpm --eslint-pattern src |