From 762c6025bd130340b62a9cfc7a6ce4f0c97cb856 Mon Sep 17 00:00:00 2001 From: carlos-alm <127798846+carlos-alm@users.noreply.github.com> Date: Wed, 11 Mar 2026 17:00:20 -0600 Subject: [PATCH] fix: only run Claude automated review on PR open, not every push Remove `synchronize` from pull_request trigger types so the automated review only runs once when the PR is first opened. Subsequent reviews require an explicit @claude mention, matching the Greptile @greptileai trigger pattern. --- .github/workflows/claude.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml index 3f6f0b86..4bc4231c 100644 --- a/.github/workflows/claude.yml +++ b/.github/workflows/claude.yml @@ -2,7 +2,7 @@ name: Claude Code on: pull_request: - types: [opened, synchronize] + types: [opened] issue_comment: types: [created] pull_request_review_comment: