From 69bca04008295a570726e98eeb37ecd92bd7cbb1 Mon Sep 17 00:00:00 2001 From: Peter Svensson Date: Mon, 9 Mar 2026 20:23:07 +0100 Subject: [PATCH] fix: remove synchronize trigger from review gate When renovate pushes new commits, the synchronize event re-runs the review gate and creates a failing pull_request run that overwrites the passing pull_request_review run. --- .github/workflows/review-gate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/review-gate.yaml b/.github/workflows/review-gate.yaml index bedeed5..66b860b 100644 --- a/.github/workflows/review-gate.yaml +++ b/.github/workflows/review-gate.yaml @@ -2,7 +2,7 @@ name: Review Gate on: pull_request: - types: [opened, synchronize, reopened] + types: [opened, reopened] pull_request_review: types: [submitted]