Skip to content

Commit

Permalink
chore: move to main (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
krizzu committed Aug 14, 2023
1 parent bf91d0d commit 077ad2d
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on:
push:
branches:
- master
- main
pull_request:
jobs:
review:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Website Deployment
on:
push:
branches:
- master
- main
paths:
- 'website/**'

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When you're sending a pull request:

## Commits and versioning

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

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

## Reporting issues
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
},
"release": {
"branches": [
"master"
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
Expand Down
2 changes: 1 addition & 1 deletion website/docs/advanced/Jest-integration.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,5 @@ export default AsyncStorageMock;
```

You can
[check its implementation](https://github.com/react-native-async-storage/async-storage/blob/master/jest/async-storage-mock.js)
[check its implementation](https://github.com/react-native-async-storage/async-storage/blob/main/jest/async-storage-mock.js)
to get more insight into methods signatures.
2 changes: 1 addition & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ module.exports = {
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl:
'https://github.com/react-native-async-storage/async-storage/edit/master/website/',
'https://github.com/react-native-async-storage/async-storage/edit/main/website/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
Expand Down

0 comments on commit 077ad2d

Please sign in to comment.