From 6431a9afd1bdce6880460e932fbd3798f84710b0 Mon Sep 17 00:00:00 2001 From: Henning Dieterichs Date: Tue, 20 Jan 2026 17:26:48 +0100 Subject: [PATCH] CI: Only run push on main branch to avoid duplicate runs --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d38ccf590f..162c68b045 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,10 @@ name: CI -on: [push, pull_request] +on: + push: + branches: + - main + pull_request: jobs: build: