From 26fe5eac905643aade4e1c631062c7753d646a26 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 18 Nov 2025 07:42:02 +0000 Subject: [PATCH] fix: optimize CI workflow to run only on pull requests Remove redundant push triggers for main and claude/** branches. CI will now only run on pull_request events, eliminating duplicate runs when pushing to PR branches (which triggered both push and pull_request events). --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ab49ff..5aaf78e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,8 +1,6 @@ name: CI on: - push: - branches: [main, claude/**] pull_request: branches: [main]