@nx-extend/changelog-notify
v8.1.0
Published
<a href="https://www.npmjs.com/package/@nx-extend/changelog-notify" rel="nofollow"> <img src="https://badgen.net/npm/v/@nx-extend/changelog-notify" alt="@nx-extend/changelog-notify NPM package"> </a>
Downloads
148
Readme
@nx-extend/changelog-notify
Nx plugin to notify you of generated changelogs created by jscutlery/semver.
Setup
Install
npm install -D @nx-extend/changelog-notify
Usage
{
"version": {
"executor": "@jscutlery/semver:version",
"options": {
...options
},
"configurations": {
"production": {
"postTargets": [
"<this project name>:send-release-to-chat"
]
}
}
},
"send-release-to-chat": {
"executor": "@nx-extend/changelog-notify:google-chat",
"options": {
"tag": "${tag}",
"notes": "${notes}"
}
}
}