Skip to content

Commit 1daa66d

Browse files
committed
setup release branch
1 parent d6a6aa1 commit 1daa66d

File tree

4 files changed

+3388
-10
lines changed

4 files changed

+3388
-10
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if [[ $(node ./scripts/check-is-release.js 2> /dev/null || :) = v* ]];
4040
then
4141
echo "value=production" >> $GITHUB_OUTPUT
42-
elif [ '${{ github.ref }}' == 'refs/heads/canary' ]
42+
elif [ '${{ github.ref }}' == 'refs/heads/next-15-0-0' ]
4343
then
4444
echo "value=staging" >> $GITHUB_OUTPUT
4545
elif [ '${{ github.event_name }}' == 'workflow_dispatch' ]
@@ -558,7 +558,7 @@ jobs:
558558

559559
publish-turbopack-npm-packages:
560560
# Matches the commit message written by turbopack/xtask/src/publish.rs:377
561-
if: "${{(github.ref == 'refs/heads/canary') && startsWith(github.event.head_commit.message, 'chore: release turbopack npm packages')}}"
561+
if: "${{(github.ref == 'refs/heads/next-15-0-0') && startsWith(github.event.head_commit.message, 'chore: release turbopack npm packages')}}"
562562
runs-on: ubuntu-latest
563563
steps:
564564
- uses: actions/checkout@v3

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: build-and-test
22

33
on:
44
push:
5-
branches: ['canary']
5+
branches: ['next-15-0-0']
66
pull_request:
77
types: [opened, synchronize]
88

@@ -369,8 +369,7 @@ jobs:
369369

370370
test-new-tests-deploy:
371371
name: Test new tests when deployed
372-
needs:
373-
['optimize-ci', 'test-prod', 'test-new-tests-dev', 'test-new-tests-start']
372+
needs: ['optimize-ci', 'test-prod', 'test-new-tests-start']
374373
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' && !github.event.pull_request.head.repo.fork }}
375374

376375
strategy:
@@ -580,9 +579,6 @@ jobs:
580579
'test-next-swc-wasm',
581580
'test-turbopack-dev',
582581
'test-turbopack-integration',
583-
'test-new-tests-dev',
584-
'test-new-tests-start',
585-
'test-new-tests-deploy',
586582
'test-turbopack-production',
587583
'test-turbopack-production-integration',
588584
]

0 commit comments

Comments
 (0)