From b6b83ca86e87dc1092917cf5563ddbe5911e1a75 Mon Sep 17 00:00:00 2001 From: Jon Gear Date: Thu, 1 Jan 2026 11:28:57 -0800 Subject: [PATCH] refactor: optimize CI workflow triggers MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove redundant push to master trigger from CI workflow since the Release workflow already handles builds on master pushes. Workflow strategy: - CI: Runs on pull requests (validates before merge) - Release: Runs on push to master (builds and creates releases) This eliminates duplicate builds on master while maintaining full test coverage on all changes. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cb64b9..59b2d73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,6 @@ name: CI on: - push: - branches: - - master pull_request: branches: - master