-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc
35 lines (35 loc) · 1017 Bytes
/
.releaserc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"branches": ["master"],
"repositoryUrl": "https://github.com/nclsbayona/nclsbayona-readme-action.git",
"plugins": [
[
'@semantic-release/commit-analyzer', {
preset: 'angular',
releaseRules: [
{ breaking: true, release: 'major' },
{ type: 'feat', release: 'minor' },
{ type: 'fix', release: 'patch' },
{ scope: 'deps', release: 'patch' },
{ type: 'docs', scope: "README", release: 'patch' },
{ type: 'chore', release: 'patch' },
],
},
],
"@semantic-release/release-notes-generator",
"@semantic-release/github",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# My Sample Changelog"
}
],
[
'@semantic-release/git',
{
message:
'chore(release): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
]
}