fix: add feat/* branch pattern to CI workflow triggers
Push events for feat/ branches were not matching the feature/ glob, causing CI to skip on all feat/* branches. Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
parent
7092f83b34
commit
4b36d7c9d7
|
|
@ -2,7 +2,7 @@ name: Continuous Integration
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main, develop, 'feature/*', 'hotfix/*' ]
|
branches: [ main, develop, 'feature/*', 'feat/*', 'hotfix/*' ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main, develop ]
|
branches: [ main, develop ]
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@ name: Security Scanning
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ main, develop ]
|
branches: [ main, develop, 'feat/*' ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ main, develop ]
|
branches: [ main, develop ]
|
||||||
schedule:
|
schedule:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue