Skip to content

Commit 9653abe

Browse files
committed
rename temp branch string to main
1 parent b284467 commit 9653abe

File tree

18 files changed

+27
-27
lines changed

18 files changed

+27
-27
lines changed

.changeset/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ with multi-package repos, or single-package repos to help you version and publis
55
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
66

77
We have a quick list of common questions to get you started engaging with this project in
8-
[our documentation](https://github.com/changesets/changesets/blob/ch-branchswitch-main/docs/common-questions.md)
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"commit": false,
88
"linked": [],
99
"access": "public",
10-
"baseBranch": "ch-branchswitch-main",
10+
"baseBranch": "main",
1111
"updateInternalDependencies": "patch",
1212
"ignore": [
1313
"firebase-namespace-integration-test",

.github/workflows/canary-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name: Canary Deploy
1717
on:
1818
push:
1919
branches:
20-
- ch-branchswitch-main
20+
- main
2121
workflow_dispatch:
2222

2323
jobs:

.github/workflows/check-changeset.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name: Check Changeset
1717
on:
1818
pull_request:
1919
branches:
20-
- ch-branchswitch-main
20+
- main
2121

2222
env:
2323
GITHUB_PULL_REQUEST_HEAD_SHA: ${{ github.event.pull_request.head.sha }}
@@ -41,9 +41,9 @@ jobs:
4141
- name: Yarn install
4242
run: yarn
4343
- name: Run changeset script
44-
# pull ch-branchswitch-main so changeset can diff against it
44+
# pull main so changeset can diff against it
4545
run: |
46-
git pull -f --no-rebase origin ch-branchswitch-main:ch-branchswitch-main
46+
git pull -f --no-rebase origin main:main
4747
yarn ts-node-script scripts/ci/check_changeset.ts
4848
id: check-changeset
4949
- name: Print changeset checker output

.github/workflows/merge-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
github.rest.repos.merge({
4545
owner: context.repo.owner,
4646
repo: context.repo.repo,
47-
base: 'ch-branchswitch-main',
47+
base: 'main',
4848
head: 'release',
4949
commit_message: 'Release ${{ steps.get-version.outputs.RELEASE_VERSION }}'
5050
})

.github/workflows/release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ jobs:
4343
# Ensures a new @firebase/app is published with every release.
4444
# This keeps the SDK_VERSION variable up to date.
4545
- name: Add a changeset for @firebase/app
46-
# pull ch-branchswitch-main so changeset can diff against it
46+
# pull main so changeset can diff against it
4747
run: |
48-
git pull -f --no-rebase origin ch-branchswitch-main:ch-branchswitch-main
48+
git pull -f --no-rebase origin main:main
4949
yarn ts-node-script scripts/ci/add_changeset.ts
5050
5151
- name: Create Release Pull Request

.github/workflows/release-staging.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ on:
2525
source-branch:
2626
description: 'Branch to release from'
2727
type: choice
28-
default: 'ch-branchswitch-main'
28+
default: 'main'
2929
required: true
3030
options:
31-
- ch-branchswitch-main
31+
- main
3232
- v8
3333
verbose:
3434
description: 'Enable verbose logging'
@@ -50,7 +50,7 @@ jobs:
5050
uses: actions/setup-node@v3
5151
with:
5252
node-version: 20.x
53-
- name: Merge ch-branchswitch-main into release
53+
- name: Merge main into release
5454
uses: actions/github-script@v6
5555
with:
5656
github-token: ${{ secrets.OSS_BOT_GITHUB_TOKEN }}

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ review.
115115
* Make your changes in a new git branch:
116116

117117
```shell
118-
git checkout -b my-fix-branch ch-branchswitch-main
118+
git checkout -b my-fix-branch main
119119
```
120120

121121
* Create your change, **including appropriate test cases**. Changes with tests are more likely to be
@@ -144,7 +144,7 @@ entries to the `.gitignore`).
144144
git push origin my-fix-branch
145145
```
146146

147-
* In GitHub, create a pull request against the `firebase-js-sdk:ch-branchswitch-main` branch.
147+
* In GitHub, create a pull request against the `firebase-js-sdk:main` branch.
148148
* Add changeset. See [Adding changeset to PR](#adding-changeset-to-pr).
149149
* All pull requests must be reviewed by a member of the Firebase JS SDK team, who will merge it
150150
when/if they feel it is good to go.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- BADGES -->
44
![Build Status](https://img.shields.io/github/actions/workflow/status/firebase/firebase-js-sdk/test-all.yml)
55
[![Version](https://img.shields.io/npm/v/firebase.svg?label=version)](https://www.npmjs.com/package/firebase)
6-
[![Coverage Status](https://coveralls.io/repos/github/firebase/firebase-js-sdk/badge.svg?branch=ch-branchswitch-main)](https://coveralls.io/github/firebase/firebase-js-sdk?branch=ch-branchswitch-main)
6+
[![Coverage Status](https://coveralls.io/repos/github/firebase/firebase-js-sdk/badge.svg?branch=main)](https://coveralls.io/github/firebase/firebase-js-sdk?branch=main)
77
<!-- END BADGES -->
88

99
The Firebase JavaScript SDK implements the client-side libraries used by

packages/auth/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ curl -H "Authorization: Bearer $(gcloud auth print-access-token)" -H "Conten
9696
}'
9797
```
9898

99-
Replace the tenant ID `passpol-tenant-d7hha` in [test/integration/flows/password_policy.test.ts](https://github.com/firebase/firebase-js-sdk/blob/ch-branchswitch-main/packages/auth/test/integration/flows/password_policy.test.ts) with the ID for the newly created tenant. The tenant ID can be found at the end of the `name` property in the response and is in the format `passpol-tenant-xxxxx`.
99+
Replace the tenant ID `passpol-tenant-d7hha` in [test/integration/flows/password_policy.test.ts](https://github.com/firebase/firebase-js-sdk/blob/main/packages/auth/test/integration/flows/password_policy.test.ts) with the ID for the newly created tenant. The tenant ID can be found at the end of the `name` property in the response and is in the format `passpol-tenant-xxxxx`.
100100

101101
### Selenium Webdriver tests
102102

0 commit comments

Comments
 (0)