From cd56523cc53080d49f1a89eea94e6d809999cfd9 Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Fri, 8 May 2026 14:00:20 +0200 Subject: [PATCH] chore(ci): Limit CI push trigger to main and feature Restrict the CI workflow's push trigger to the main and feature branches while preserving the existing paths-ignore filters. This avoids unnecessary push-triggered CI runs on topic branches without changing pull request workflow behavior. Fixes #19324 --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75bd254e8..20955cbc2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,9 @@ name: CI on: push: + branches: + - main + - feature paths-ignore: - '.github/ISSUE_TEMPLATE/**' - '.github/PULL_REQUEST_TEMPLATE.md'