Skip to content

Commit 8297b95

Browse files
committed
ci: trigger on feat/fix/docs/chore branch pushes too, not just main
Opening a draft PR just to smoke-test CI on the feature branch was a workflow mistake — the whole point of that branch is to stay isolated from main until native Windows support is fully verified. Broadening the push trigger lets CI run directly on every feat/** push, no PR to main required. main + PRs still covered as before.
1 parent ce8a2bf commit 8297b95

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ name: ci
22

33
on:
44
push:
5-
branches: [main]
5+
branches:
6+
- main
7+
- "feat/**"
8+
- "fix/**"
9+
- "docs/**"
10+
- "chore/**"
611
pull_request:
712

813
jobs:

0 commit comments

Comments
 (0)