From 4b36d7c9d75b09feabfad0795fd1007320d6c048 Mon Sep 17 00:00:00 2001 From: ruv Date: Sun, 1 Mar 2026 01:41:36 -0500 Subject: [PATCH] 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 --- .github/workflows/ci.yml | 2 +- .github/workflows/security-scan.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc467de..db2d36e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: Continuous Integration on: push: - branches: [ main, develop, 'feature/*', 'hotfix/*' ] + branches: [ main, develop, 'feature/*', 'feat/*', 'hotfix/*' ] pull_request: branches: [ main, develop ] workflow_dispatch: diff --git a/.github/workflows/security-scan.yml b/.github/workflows/security-scan.yml index e557a46..920e42c 100644 --- a/.github/workflows/security-scan.yml +++ b/.github/workflows/security-scan.yml @@ -2,7 +2,7 @@ name: Security Scanning on: push: - branches: [ main, develop ] + branches: [ main, develop, 'feat/*' ] pull_request: branches: [ main, develop ] schedule: