helpers: Limit verbose watch output for better readability #116
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: AI Detection | |
| on: | |
| # Use pull_request_target instead of pull_request (we need the secrets.OPENAI_API_KEY to be available for forks) | |
| pull_request_target: | |
| types: [opened, ready_for_review] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| detect-ai: | |
| runs-on: ubuntu-latest | |
| if: ${{ !github.event.pull_request.draft }} | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| - name: AI Watchdog | |
| uses: bep/ai-watchdog@995475dd81767f8035dc2c943e9230918d06caca # temporary fork (probably) | |
| with: | |
| openai-api-key: ${{ secrets.OPENAI_API_KEY }} | |
| pr-label: AI Suspect | |
| fail-when-confident: false | |
| # CSV list. | |
| pr-user-logins-skip: dependabot[bot],bep,jmooring |