forked from castastrophe/actions-pr-auto-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc
39 lines (39 loc) · 1 KB
/
.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
36
37
38
39
{
"ci": true,
"branches": [
{ "name": "+([0-9])?(.{+([0-9]),x}).x", "range": "1.x.x", "channel": "v1" },
"main",
{ "name": "beta", "prerelease": true },
{ "name": "alpha", "prerelease": true }
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/github",
{
"assets": [
"bin/index.js",
"CHANGELOG.md",
"README.md",
"package.json",
"yarn.lock"
]
}
],
[
"@semantic-release/git",
{
"assets": [
"bin/index.js",
"CHANGELOG.md",
"README.md",
"package.json",
"yarn.lock"
],
"message": "chore: release <%= nextRelease.version %> [skip ci]\n\n<%= new Date().toLocaleDateString('en-US', {year: 'numeric', month: 'short', day: 'numeric', hour: 'numeric', minute: 'numeric' }) %>\n<%= nextRelease.notes %>"
}
]
]
}