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
This commit is contained in:
Martin Hauser 2026-05-08 14:00:20 +02:00 committed by Jeremy Stretch
parent bf23a0b3fd
commit cd56523cc5
1 changed files with 3 additions and 0 deletions

View File

@ -3,6 +3,9 @@ name: CI
on:
push:
branches:
- main
- feature
paths-ignore:
- '.github/ISSUE_TEMPLATE/**'
- '.github/PULL_REQUEST_TEMPLATE.md'