Skip to content

Commit 1cb56a5

Browse files
Create MCP branch
1 parent c18b4c8 commit 1cb56a5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ name: Build-Test-Deploy
88
- beta
99
- release
1010
- LTS*
11+
- mcp
1112
pull_request:
1213
types:
1314
- labeled
@@ -188,7 +189,7 @@ jobs:
188189
name: Check Format
189190
id: check_format
190191
shell: bash
191-
if: "!contains(fromJSON('[\"refs/heads/beta\", \"refs/heads/release\", \"refs/heads/LTS\", \"refs/heads/master\"]'), github.ref) && !startsWith(github.event.pull_request.head.ref, 'version/')"
192+
if: "!contains(fromJSON('[\"refs/heads/beta\", \"refs/heads/release\", \"refs/heads/LTS\", \"refs/heads/master\", \"refs/heads/mcp\"]'), github.ref) && !startsWith(github.event.pull_request.head.ref, 'version/')"
192193
run: parallelize results Check-Format
193194

194195
- # === Raw Unit Tests ===
@@ -261,7 +262,7 @@ jobs:
261262

262263
- # === Deploy for Integration Tests # NEVER run this against production branches. This is meant for PR deployments. ===
263264
name: Deploy for Integration Tests # NEVER run this against production branches. This is meant for PR deployments.
264-
if: "!contains(fromJSON('[\"refs/heads/beta\", \"refs/heads/release\", \"refs/heads/LTS\"]'), github.ref)"
265+
if: "!contains(fromJSON('[\"refs/heads/beta\", \"refs/heads/release\", \"refs/heads/LTS\", \"refs/heads/mcp\"]'), github.ref)"
265266
shell: bash
266267
run: |
267268
if [ "$GITHUB_EVENT_NAME" != "schedule" ]; then
@@ -287,7 +288,7 @@ jobs:
287288
- # === Integration Tests ===
288289
name: Integration Tests
289290
id: integration_tests
290-
if: "!contains(fromJSON('[\"refs/heads/beta\", \"refs/heads/release\", \"refs/heads/LTS\"]'), github.ref)"
291+
if: "!contains(fromJSON('[\"refs/heads/beta\", \"refs/heads/release\", \"refs/heads/LTS\", \"refs/heads/mcp\"]'), github.ref)"
291292
shell: bash
292293
run: |
293294
if [ "$GITHUB_EVENT_NAME" != "schedule" ]; then
@@ -428,7 +429,7 @@ jobs:
428429
GITHUB_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
429430
GITHUB_SHA_OVERRIDE: ${{ github.event.pull_request.head.sha || github.sha }}
430431
timeout-minutes: 10
431-
if: contains(fromJSON('["refs/heads/master", "refs/heads/beta", "refs/heads/release", "refs/heads/LTS"]'), github.ref) || startsWith(github.event.pull_request.head.ref, 'version/')
432+
if: contains(fromJSON('["refs/heads/master", "refs/heads/beta", "refs/heads/release", "refs/heads/LTS", "refs/heads/mcp"]'), github.ref) || startsWith(github.event.pull_request.head.ref, 'version/')
432433

433434
# === Deploy Steps ===
434435
steps:

0 commit comments

Comments
 (0)