Skip to content

Commit a67ee72

Browse files
committed
setup release branch
1 parent 3491676 commit a67ee72

File tree

3 files changed

+11
-21
lines changed

3 files changed

+11
-21
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
if [[ $(node ./scripts/check-is-release.js 2> /dev/null || :) == v* ]];
6161
then
6262
echo "value=production" >> $GITHUB_OUTPUT
63-
elif [ '${{ github.ref }}' == 'refs/heads/canary' ]
63+
elif [ '${{ github.ref }}' == 'refs/heads/next-16-1' ]
6464
then
6565
echo "value=staging" >> $GITHUB_OUTPUT
6666
elif [ '${{ github.event_name }}' == 'workflow_dispatch' ]
@@ -613,7 +613,7 @@ jobs:
613613

614614
publish-turbopack-npm-packages:
615615
# Matches the commit message written by turbopack/xtask/src/publish.rs:377
616-
if: "${{(github.ref == 'refs/heads/canary') && startsWith(github.event.head_commit.message, 'chore: release turbopack npm packages')}}"
616+
if: "${{(github.ref == 'refs/heads/next-16-1') && startsWith(github.event.head_commit.message, 'chore: release turbopack npm packages')}}"
617617
runs-on: ubuntu-latest
618618
permissions:
619619
contents: write

.github/workflows/build_and_test.yml

Lines changed: 7 additions & 18 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-16-1']
66
pull_request:
77
types: [opened, synchronize]
88

@@ -612,7 +612,7 @@ jobs:
612612
name: Test new tests for flakes (dev)
613613
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
614614
# test-new-tests-if
615-
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
615+
if: false
616616
# test-new-tests-end-if
617617

618618
strategy:
@@ -636,7 +636,7 @@ jobs:
636636
name: Test new tests for flakes (prod)
637637
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
638638
# test-new-tests-if
639-
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
639+
if: false
640640
# test-new-tests-end-if
641641

642642
strategy:
@@ -657,10 +657,9 @@ jobs:
657657

658658
test-new-tests-deploy:
659659
name: Test new tests when deployed
660-
needs:
661-
['optimize-ci', 'test-prod', 'test-new-tests-dev', 'test-new-tests-start']
660+
needs: ['optimize-ci', 'test-prod', 'test-new-tests-start']
662661
# test-new-tests-if
663-
if: ${{ needs.optimize-ci.outputs.skip == 'false' }}
662+
if: false
664663
# test-new-tests-end-if
665664

666665
strategy:
@@ -682,15 +681,9 @@ jobs:
682681

683682
test-new-tests-deploy-cache-components:
684683
name: Test new tests when deployed (cache components)
685-
needs:
686-
[
687-
'optimize-ci',
688-
'test-cache-components-prod',
689-
'test-new-tests-dev',
690-
'test-new-tests-start',
691-
]
684+
needs: ['optimize-ci', 'test-cache-components-prod']
692685
# test-new-tests-if
693-
if: ${{ needs.optimize-ci.outputs.skip == 'false' }}
686+
if: false
694687
# test-new-tests-end-if
695688

696689
strategy:
@@ -1020,10 +1013,6 @@ jobs:
10201013
'test-next-swc-wasm',
10211014
'test-turbopack-dev',
10221015
'test-turbopack-integration',
1023-
'test-new-tests-dev',
1024-
'test-new-tests-start',
1025-
'test-new-tests-deploy',
1026-
'test-new-tests-deploy-cache-components',
10271016
'test-turbopack-production',
10281017
'test-turbopack-production-integration',
10291018
'test-unit-windows',

lerna.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"publish": {
1111
"npmClient": "npm",
1212
"allowBranch": [
13-
"canary"
13+
"canary",
14+
"next-16-1"
1415
],
1516
"registry": "https://registry.npmjs.org/"
1617
}

0 commit comments

Comments
 (0)