Skip to content

Commit 85c53db

Browse files
committed
chore: rename master branch to main
1 parent 5ee6d18 commit 85c53db

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/PULL_REQUEST_TEMPLATE/pull_request_template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ the requirements below.
44
55
Bug fixes and new features should include tests.
66
7-
Contributors guide: https://github.com/Fdawgs/fastify-json-to-xml/blob/master/CONTRIBUTING.md
7+
Contributors guide: https://github.com/Fdawgs/fastify-json-to-xml/blob/main/CONTRIBUTING.md
88
99
-->
1010

1111
#### Checklist
1212

1313
- [ ] Run `npm test`
14-
- [ ] Documentation has been updated and adheres to the style described in [CONTRIBUTING.md](https://github.com/Fdawgs/fastify-json-to-xml/blob/master/CONTRIBUTING.md#documentation-style)
14+
- [ ] Documentation has been updated and adheres to the style described in [CONTRIBUTING.md](https://github.com/Fdawgs/fastify-json-to-xml/blob/main/CONTRIBUTING.md#documentation-style)
1515
- [ ] Commit message adheres to the [Conventional commits](https://conventionalcommits.org/en/v1.0.0/) style, following the `@commitlint/config-conventional` config

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: CD
66
on:
77
push:
88
branches:
9-
- master
9+
- main
1010
# Allows this workflow to be run manually from the Actions tab
1111
workflow_dispatch:
1212

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ name: CI
66
on:
77
push:
88
branches:
9-
- master
9+
- main
1010
paths-ignore:
1111
- "docs/**"
1212
- "*.md"
1313
pull_request:
1414
branches:
15-
- master
15+
- main
1616
paths-ignore:
1717
- "docs/**"
1818
- "*.md"

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ name: CodeQL Analysis
66
on:
77
push:
88
branches:
9-
- master
9+
- main
1010
pull_request:
1111
branches:
12-
- master
12+
- main
1313
paths:
1414
- "**/*.html"
1515
- "**/*.js"

.github/workflows/link-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ name: Check Markdown for Broken Links
66
on:
77
push:
88
branches:
9-
- master
9+
- main
1010
paths:
1111
- "**/*.md"
1212
- "!CHANGELOG.md"
1313
pull_request:
1414
branches:
15-
- master
15+
- main
1616
paths:
1717
- "**/*.md"
1818
- "!CHANGELOG.md"

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Contributions are welcome and any help that can be offered is greatly appreciate
44
Please take a moment to read the entire contributing guide.
55

66
This repository uses the [Feature Branch Workflow](https://atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow),
7-
meaning that development should take place in `feat/` branches, with the `master` branch kept in a stable state.
8-
When you submit pull requests, please make sure to fork from and submit back to `master`.
7+
meaning that development should take place in `feat/` branches, with the `main` branch kept in a stable state.
8+
When you submit pull requests, please make sure to fork from and submit back to `main`.
99

1010
Other processes and specifications that are in use in this repository are:
1111

@@ -37,7 +37,7 @@ Titles and headings should use sentence-style capitalisation, where only the fir
3737

3838
Before submitting a pull request back to the main repository, please make sure you have completed the following steps:
3939

40-
1. Pull request base branch is set to `master`. All pull requests should be forked from and merged back to `master`
40+
1. Pull request base branch is set to `main`. All pull requests should be forked from and merged back to `main`
4141
2. Run `npm test` to check the code adheres to the defined ESLint style and that it passes the Jest tests
4242
3. Run `npm run lint:prettier` to run the Prettier code formatter over the code
4343
4. Run `npm run lint:licenses` if adding or updating production dependencies to check they use permissive licenses

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![GitHub Release](https://img.shields.io/github/release/Fdawgs/fastify-json-to-xml.svg)](https://github.com/Fdawgs/fastify-json-to-xml/releases/latest/)
44
[![npm version](https://img.shields.io/npm/v/fastify-json-to-xml)](https://npmjs.com/package/fastify-json-to-xml)
5-
![Build Status](https://github.com/Fdawgs/fastify-json-to-xml/workflows/CI/badge.svg?branch=master)
6-
[![Coverage Status](https://coveralls.io/repos/github/Fdawgs/fastify-json-to-xml/badge.svg?branch=master)](https://coveralls.io/github/Fdawgs/fastify-json-to-xml?branch=master)
5+
![Build Status](https://github.com/Fdawgs/fastify-json-to-xml/workflows/CI/badge.svg?branch=main)
6+
[![Coverage Status](https://coveralls.io/repos/github/Fdawgs/fastify-json-to-xml/badge.svg?branch=main)](https://coveralls.io/github/Fdawgs/fastify-json-to-xml?branch=main)
77
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat)](https://github.com/prettier/prettier)
88

99
> Fastify plugin to serialise JSON responses into XML

0 commit comments

Comments
 (0)