generated from iamogbz/oss-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.js
34 lines (28 loc) · 939 Bytes
/
.releaserc.js
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
const user_repo = "iamogbz/nvshim";
module.exports = {
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
changelogTitle: `# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [In Progress](https://github.com/${user_repo}/pulls)
See open [issues](https://github.com/${user_repo}/issues)
## [Unreleased](https://github.com/${user_repo}/releases)
See closed [issues](https://github.com/${user_repo}/pulls?q=is%3Apr+is%3Amerged+sort%3Acreated-desc+-label%3Areleased)`,
},
],
[
"@semantic-release/git",
{
assets: ["CHANGELOG.md"],
message:
"chore(release): ${nextRelease.version}\n\n${nextRelease.notes}",
},
],
"@semantic-release/github",
],
};