From 131c00aec6ec448b49fb21aea0dc35a87cae6341 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 15 Jan 2026 18:43:07 +0000 Subject: [PATCH] Fix CLA action to only run on PR branches Remove 'closed' event type from pull_request_target trigger to prevent the CLA check from running on main when a PR is merged. The CLA check only needs to run when PRs are opened or updated with new commits. --- .github/workflows/cla.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 25cf6689..38196f17 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -4,7 +4,7 @@ on: issue_comment: types: [created] pull_request_target: - types: [opened, closed, synchronize] + types: [opened, synchronize] # Explicitly set permissions for the workflow permissions: