Skip to content

Commit dfde30d

Browse files
authored
chore: rename master to main (#128)
1 parent 96fcd82 commit dfde30d

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ please copy/paste the deploy logs below instead.
3535
**Pull requests**
3636

3737
Pull requests are welcome! If you would like to help us fix this bug, please check our
38-
[contributions guidelines](../blob/master/CONTRIBUTING.md).
38+
[contributions guidelines](../blob/main/CONTRIBUTING.md).

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ Yes/No.
3636

3737
<!--
3838
Pull requests are welcome! If you would like to help us add this feature, please check our
39-
[contributions guidelines](../blob/master/CONTRIBUTING.md).
39+
[contributions guidelines](../blob/main/CONTRIBUTING.md).
4040
-->

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ Example: Another solution would be [...]
2626

2727
Please add a `x` inside each checkbox:
2828

29-
- [ ] I have read the [contribution guidelines](../blob/master/CONTRIBUTING.md).
29+
- [ ] I have read the [contribution guidelines](../blob/main/CONTRIBUTING.md).
3030
- [ ] The status checks are successful (continuous integration). Those can be seen below.

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Dependency License Scanning
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
defaults:
99
run:

.github/workflows/release-please.yml

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

.github/workflows/workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Build
22
on:
33
# Ensure GitHub actions are not run twice for same commits
44
push:
5-
branches: [master]
5+
branches: [main]
66
tags: ['*']
77
pull_request:
88
types: [opened, synchronize, reopened]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ module.exports = { extends: ['@commitlint/config-conventional'] }
7070
- Add the following properties to the `package.json`. Please replace the `config` globbing expressions to match the
7171
files where the source JavaScript/Markdown/HTML/JSON/YAML files are located. `npm run format` should also be run
7272
during `npm test` and `npm run format:ci` during CI
73-
([example](https://github.com/netlify/cli/blob/master/.github/workflows/main.yml)).
73+
([example](https://github.com/netlify/cli/blob/main/.github/workflows/main.yml)).
7474

7575
```json
7676
{

codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
codecov:
2-
strict_yaml_branch: master
2+
strict_yaml_branch: main
33
coverage:
44
range: [80, 100]
55
parsers:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"test:dev:ava": "ava",
3030
"test:ci:ava": "nyc -r lcovonly -r text -r json ava",
3131
"prepublishOnly": "run-s prepublishOnly:*",
32-
"prepublishOnly:checkout": "git checkout master",
32+
"prepublishOnly:checkout": "git checkout main",
3333
"prepublishOnly:pull": "git pull",
3434
"prepublishOnly:install": "npm ci",
3535
"prepublishOnly:test": "npm test"

renovate.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
extends: ['github>netlify/renovate-config:default'],
33
ignorePresets: [':prHourlyLimit2'],
44
semanticCommits: true,
5-
masterIssue: true,
5+
dependencyDashboard: true,
66
automerge: false,
77
}

0 commit comments

Comments
 (0)