Skip to content

Commit d5f878d

Browse files
committed
fix(workflows): fixed feature branch pattern matching
Updated branch pattern syntax in feature-test workflow from `feature-*` to `feature/*`. The glob pattern `feature-*` does not match branch naming conventions like `feature/branch-name`. Changed both push and pull_request triggers to use correct pattern `feature/*` for proper branch matching.
1 parent 158d141 commit d5f878d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/feature-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: 🧪 Feature Integration Tests
22

33
on:
44
push:
5-
branches: [ feature-* ]
5+
branches: [ feature/* ]
66
pull_request:
7-
branches: [ feature-* ]
7+
branches: [ feature/* ]
88

99
workflow_dispatch:
1010

0 commit comments

Comments
 (0)