From 4c481ee57e53aacc127e7405073ab246c9d501d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johan=20Eckerstr=C3=B6m?= Date: Sat, 27 Jun 2026 08:41:32 +0200 Subject: [PATCH] Run push CI only on main A commit on a branch with an open PR fired both the push and the pull_request event, running the full CI matrix twice. Restrict push to main so feature branches run once via pull_request; main still runs on push so the Fly deploy trigger is unaffected. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 73a2a603..c8a5e7d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,6 +2,8 @@ name: CI on: push: + branches: + - main pull_request: types: - opened