Skip to content

Commit 0107330

Browse files
authored
chore: default branch rename (#798)
1 parent b7aee15 commit 0107330

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

.github/pull_request_template.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ Resolves #ISSUE_NUMBER
1111
### Before the change?
1212
<!-- Please describe the current behavior that you are modifying. -->
1313

14-
*
14+
*
1515

1616
### After the change?
1717
<!-- Please describe the behavior or changes that are being added by this PR. -->
1818

19-
*
19+
*
2020

2121

2222
### Other information
2323
<!-- Any other information that is important to this PR -->
2424

25-
*
25+
*
2626

2727
----
2828

@@ -36,20 +36,20 @@ Resolves #ISSUE_NUMBER
3636
### Does this introduce a breaking change?
3737
<!-- If this introduces a breaking change make sure to note it here any what the impact might be -->
3838

39-
Please see our docs on [breaking changes](https://github.com/octokit/.github/blob/master/community/breaking_changes.md) to help!
39+
Please see our docs on [breaking changes](https://github.com/octokit/.github/blob/main/community/breaking_changes.md) to help!
4040

4141
- [ ] Yes (Please add the `Type: Breaking change` label)
4242
- [ ] No
4343

44-
If `Yes`, what's the impact:
44+
If `Yes`, what's the impact:
4545

4646
* N/A
4747

4848

4949
### Pull request type
5050

51-
<!-- Please do not submit updates to dependencies unless it fixes an issue. -->
52-
<!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. -->
51+
<!-- Please do not submit updates to dependencies unless it fixes an issue. -->
52+
<!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. -->
5353

5454
Please add the corresponding label for change this PR introduces:
5555
- Bugfix: `Type: Bug`

.github/workflows/codeql-analysis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: CodeQL
22
"on":
33
push:
44
branches:
5-
- master
5+
- main
66
pull_request:
77
branches:
8-
- master
8+
- main
99
schedule:
1010
- cron: 28 11 * * 6
1111
jobs:

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Release
22
"on":
33
push:
44
branches:
5-
- master
5+
- main
66
- next
77
- beta
88
- v*.x

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ emitterEventNames; // ["check_run", "check_run.completed", ...]
711711

712712
## TypeScript
713713

714-
The types for the webhook payloads are sourced from [`@octokit/webhooks-types`](https://github.com/octokit/webhooks/tree/master/payload-types),
714+
The types for the webhook payloads are sourced from [`@octokit/webhooks-types`](https://github.com/octokit/webhooks/tree/main/payload-types),
715715
which can be used by themselves.
716716

717717
In addition to these types, `@octokit/webhooks` exports 2 types specific to itself:

package.json

+9
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@
1818
},
1919
"prettier": {},
2020
"release": {
21+
"branches": [
22+
"+([0-9]).x",
23+
"main",
24+
"next",
25+
{
26+
"name": "beta",
27+
"prerelease": true
28+
}
29+
],
2130
"plugins": [
2231
"@semantic-release/commit-analyzer",
2332
"@semantic-release/release-notes-generator",

0 commit comments

Comments
 (0)