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:
parent
bf23a0b3fd
commit
cd56523cc5
|
|
@ -3,6 +3,9 @@ name: CI
|
|||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- feature
|
||||
paths-ignore:
|
||||
- '.github/ISSUE_TEMPLATE/**'
|
||||
- '.github/PULL_REQUEST_TEMPLATE.md'
|
||||
|
|
|
|||
Loading…
Reference in New Issue