Skip to content

Commit 077ad2d

Browse files
author
Krzysztof Borowy
authored
chore: move to main (#1001)
1 parent bf91d0d commit 077ad2d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
pull_request:
77
jobs:
88
review:

.github/workflows/website-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Website Deployment
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
paths:
77
- 'website/**'
88

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ When you're sending a pull request:
4242

4343
## Commits and versioning
4444

45-
All PRs are squashed into `master` branch and wrapped up in a single commit,
45+
All PRs are squashed into `main` branch and wrapped up in a single commit,
4646
following
4747
[conventional commit message](https://www.conventionalcommits.org/en/v1.0.0-beta.3).
4848
Combined with [semantic versioning](https://semver.org/), this allows us to have
@@ -66,7 +66,7 @@ Most notably prefixes you'll see:
6666
## Release process
6767

6868
We use [Semantic Release](http://semantic-release.org) to automatically release
69-
new versions of the library when changes are merged into `master` branch, which
69+
new versions of the library when changes are merged into `main` branch, which
7070
we plan to keep stable. Bug fixes take priority in the release order.
7171

7272
## Reporting issues

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
},
159159
"release": {
160160
"branches": [
161-
"master"
161+
"main"
162162
],
163163
"plugins": [
164164
"@semantic-release/commit-analyzer",

website/docs/advanced/Jest-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ export default AsyncStorageMock;
7474
```
7575

7676
You can
77-
[check its implementation](https://github.com/react-native-async-storage/async-storage/blob/master/jest/async-storage-mock.js)
77+
[check its implementation](https://github.com/react-native-async-storage/async-storage/blob/main/jest/async-storage-mock.js)
7878
to get more insight into methods signatures.

website/docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ module.exports = {
7777
docs: {
7878
sidebarPath: require.resolve('./sidebars.js'),
7979
editUrl:
80-
'https://github.com/react-native-async-storage/async-storage/edit/master/website/',
80+
'https://github.com/react-native-async-storage/async-storage/edit/main/website/',
8181
},
8282
theme: {
8383
customCss: require.resolve('./src/css/custom.css'),

0 commit comments

Comments
 (0)