Skip to content

Commit a500612

Browse files
committed
chore: rename master branch to main
1 parent 4adb19e commit a500612

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/documentation.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ jobs:
2323
yarn lint
2424
yarn typecheck
2525
yarn build
26+
2627
gh-release:
27-
if: github.ref_name == 'master'
28+
if: github.ref_name == 'main'
2829
runs-on: ubuntu-latest
2930
needs: checks
3031
steps:

docs/reference/aspida.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ Types defined as reqBody, reqHeaders, and query in the API type definition are i
4545

4646
## Writing API Definitions {#writing-api-definitions}
4747

48-
Please refer to [aspida's README](https://github.com/aspida/aspida/tree/master/packages/aspida#readme) for how to write API type definitions.
48+
Please refer to [aspida's README](https://github.com/aspida/aspida/tree/main/packages/aspida#readme) for how to write API type definitions.

docs/reference/routing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export default defineController(() => ({
9191
{'{\n validators?: '}
9292
<a href="/docs/reference/validation/zod#controller-level">(Controller-level Validators)</a>
9393
{',\n schemas?: { response?: { [(HTTP Status Code)]: '}
94-
<a href="https://github.com/fastify/fast-json-stringify/blob/master/types/index.d.ts">Schema</a>
94+
<a href="https://github.com/fastify/fast-json-stringify/blob/main/types/index.d.ts">Schema</a>
9595
{' } },\n hooks?: '}
9696
<a href="/docs/reference/hooks#serverhooks">ServerHooks</a>
9797
{',\n handler: '}

docusaurus.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,15 +139,15 @@ module.exports = {
139139
docs: {
140140
sidebarPath: require.resolve('./sidebars.js'),
141141
// Please change this to your repo.
142-
editUrl: 'https://github.com/frouriojs/frourio.com/edit/master/',
142+
editUrl: 'https://github.com/frouriojs/frourio.com/edit/main/',
143143
},
144144
gtag: {
145145
trackingID: process.env.TRACKING_ID || 'G-XXXXXX',
146146
},
147147
blog: {
148148
showReadingTime: true,
149149
// Please change this to your repo.
150-
editUrl: 'https://github.com/frouriojs/frourio.com/edit/master/',
150+
editUrl: 'https://github.com/frouriojs/frourio.com/edit/main/',
151151
},
152152
theme: {
153153
customCss: require.resolve('./src/css/custom.css'),

0 commit comments

Comments
 (0)