There was an error while loading. Please reload this page.
1 parent 5f9c3a3 commit 0f94274Copy full SHA for 0f94274
.github/workflows/aiwatchdog.yml
@@ -2,13 +2,14 @@ name: AI Detection
2
on:
3
# Use pull_request_target instead of pull_request (we need the secrets.OPENAI_API_KEY to be available for forks)
4
pull_request_target:
5
- types: [open]
+ types: [opened, ready_for_review]
6
permissions:
7
contents: read
8
pull-requests: write
9
jobs:
10
detect-ai:
11
runs-on: ubuntu-latest
12
+ if: ${{ !github.event.pull_request.draft }}
13
steps:
14
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
15
- name: AI Watchdog
0 commit comments