Skip to content

Commit 75e6fef

Browse files
committed
Update CI to use develop branch instead of development
- Update pull_request branches to include develop instead of development - Update build job condition to trigger on develop branch - Ensures CI works properly with renamed development branch
1 parent 9ccc1c9 commit 75e6fef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [main]
66
pull_request:
7-
branches: [main, development]
7+
branches: [main, develop]
88

99
# Prevent duplicate runs
1010
concurrency:
@@ -225,7 +225,7 @@ jobs:
225225
name: Build for Deployment
226226
runs-on: ubuntu-latest
227227
needs: [lint-and-typecheck, security-scan, test-core, test-server, test-web, test-mcp-server]
228-
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/development'
228+
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop'
229229
steps:
230230
- name: Checkout code
231231
uses: actions/checkout@v4

0 commit comments

Comments
 (0)