From d25b619ce2c77055e807044f2059280675d39ee4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 19 Nov 2025 15:32:28 +0100 Subject: [PATCH] github: Only run AI Watchdog when the PR is ready for review --- .github/workflows/aiwatchdog.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/aiwatchdog.yml b/.github/workflows/aiwatchdog.yml index 59920914c..fc159bc2b 100644 --- a/.github/workflows/aiwatchdog.yml +++ b/.github/workflows/aiwatchdog.yml @@ -2,7 +2,7 @@ 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, reopened, ready_for_review, synchronize] + types: [ready_for_review] permissions: contents: read pull-requests: write -- 2.39.5