Skip to content

Commit 0712f87

Browse files
authored
chore: rename master to main (#164)
1 parent 0906343 commit 0712f87

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- master
87
- next
98
- 'v*'
109
paths-ignore:

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# @fastify/mysql
22

3-
[![CI](https://github.com/fastify/fastify-mysql/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/fastify/fastify-mysql/actions/workflows/ci.yml)
3+
[![CI](https://github.com/fastify/fastify-mysql/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/fastify/fastify-mysql/actions/workflows/ci.yml)
44
[![NPM version](https://img.shields.io/npm/v/@fastify/mysql.svg?style=flat)](https://www.npmjs.com/package/@fastify/mysql)
55
[![neostandard javascript style](https://img.shields.io/badge/code_style-neostandard-brightgreen?style=flat)](https://github.com/neostandard/neostandard)
66

@@ -214,7 +214,7 @@ app.get("/", async () => {
214214
```
215215

216216
##### isMySQLPool
217-
Method to check if fastify decorator, mysql is type of [MySQLPool](https://github.com/fastify/fastify-mysql/blob/master/types/index.d.ts#L32)
217+
Method to check if fastify decorator, mysql is type of [MySQLPool](https://github.com/fastify/fastify-mysql/blob/main/types/index.d.ts#L32)
218218

219219
```typescript
220220
const app = fastify();
@@ -235,7 +235,7 @@ app
235235

236236

237237
##### isMySQLPromisePool
238-
Method to check if fastify decorator, mysql is type of [MySQLPromisePool](https://github.com/fastify/fastify-mysql/blob/master/types/index.d.ts#L43)
238+
Method to check if fastify decorator, mysql is type of [MySQLPromisePool](https://github.com/fastify/fastify-mysql/blob/main/types/index.d.ts#L43)
239239

240240
```typescript
241241
app
@@ -255,7 +255,7 @@ app
255255

256256

257257
##### isMySQLConnection
258-
Method to check if fastify decorator, mysql is type of [MySQLConnection](https://github.com/fastify/fastify-mysql/blob/master/types/index.d.ts#L28)
258+
Method to check if fastify decorator, mysql is type of [MySQLConnection](https://github.com/fastify/fastify-mysql/blob/main/types/index.d.ts#L28)
259259

260260
```typescript
261261
app
@@ -273,7 +273,7 @@ app
273273

274274

275275
##### isMySQLPromiseConnection
276-
Method to check if fastify decorator, mysql is type of [MySQLPromiseConnection](https://github.com/fastify/fastify-mysql/blob/master/types/index.d.ts#L36)
276+
Method to check if fastify decorator, mysql is type of [MySQLPromiseConnection](https://github.com/fastify/fastify-mysql/blob/main/types/index.d.ts#L36)
277277

278278
```typescript
279279
app

0 commit comments

Comments
 (0)